diff --git a/examples/DMXRead/DMXRead.ino b/examples/DMXRead/DMXRead.ino index 7dd4cd9e4..1153cbd0c 100644 --- a/examples/DMXRead/DMXRead.ino +++ b/examples/DMXRead/DMXRead.ino @@ -81,9 +81,10 @@ void loop() { dmx_event_t packet; /* And now we wait! The DMX standard defines the amount of time until DMX - officially times out. That amount of time is converted into ESP32 clock ticks - using the constant `DMX_RX_PACKET_TOUT_TICK`. If it takes longer than that - amount of time to receive data, this if statement will evaluate to false. */ + officially times out. That amount of time is converted into ESP32 clock + ticks using the constant `DMX_PACKET_TIMEOUT_TICK`. If it takes longer than + that amount of time to receive data, this if statement will evaluate to + false. */ if (xQueueReceive(queue, &packet, DMX_PACKET_TIMEOUT_TICK)) { /* If this code gets called, it means we've received DMX data! */