Merge pull request #14335 from s-hadinger/berry_add_200_250_ms

Berry add 200ms and 250ms messages
This commit is contained in:
s-hadinger 2022-01-08 18:36:46 +01:00 committed by GitHub
commit f71c16d564
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;