Berry add 200ms and 250ms messages

This commit is contained in:
Stephan Hadinger 2022-01-08 18:13:50 +01:00
parent 9a9d869676
commit 8406d11ce4
1 changed files with 6 additions and 0 deletions

View File

@ -777,6 +777,12 @@ bool Xdrv52(uint8_t function)
case FUNC_EVERY_100_MSECOND:
callBerryEventDispatcher(PSTR("every_100ms"), nullptr, 0, nullptr);
break;
case FUNC_EVERY_200_MSECOND:
callBerryEventDispatcher(PSTR("every_200ms"), nullptr, 0, nullptr);
break;
case FUNC_EVERY_250_MSECOND:
callBerryEventDispatcher(PSTR("every_250ms"), nullptr, 0, nullptr);
break;
case FUNC_EVERY_SECOND:
callBerryEventDispatcher(PSTR("every_second"), nullptr, 0, nullptr);
break;