rename initDmx() -> initDmxOutput()

This commit is contained in:
Arne
2023-08-23 15:04:28 +02:00
parent 6efd7457e0
commit 7cccb2e181
3 changed files with 5 additions and 5 deletions

View File

@@ -82,7 +82,7 @@ void handleDMXOutput()
dmx.update(); // update the DMX bus
}
void initDMX() {
void initDMXOutput() {
#ifdef ESP8266
dmx.init(512); // initialize with bus length
#else
@@ -90,6 +90,6 @@ void initDMX() {
#endif
}
#else
void initDMX(){}
void initDMXOutput(){}
void handleDMXOutput() {}
#endif