antonmeyer
antonmeyer
First of all big Thank you for this great lib, helps me a lot. I had some problems with the timestamp. So I switched it of in the first try....
Heltec.display->drawString I´m not sure if this is by design. I would name it a bug. When I want to write a string to a given position I do not want...
it is a feature request: allow (re)naming of "value" of fields in a channel. e.g. "temp" or "hum". Not a big issue as long you have only 1 value per...
to allow per vzlogger channel a different field name than "value" we add this config option
flicker
if you move the show call into EVERY_N call output get much more smooth. I guess that the high refresh rate of leds causes the flicker. And as long you...
I think, that is not a perfect logic: if (ranamount >NUM_LEDS) ranamount = NUM_LEDS; // Make sure we're at least utilizing ALL the LED's. int idex = random16(0, ranamount); ```...
I run into this error message: Exception has occurred: ReferenceError ReferenceError: uc is not defined at WMBUS.decodeApplicationLayer (/Users/xxxx/node_modules/wm-bus/lib/wmbus-decoder.js:1508:13) As I'm not a javascript expert I can not tell what uc...
could you extend the UART with parity bit?
several macros are not defined if you set debug level to 0, and that leads to compilation errors where the macros are still used so I added at this places...
there is a bug in: for (int q=0; q < 3; q++) { for (int i=0; i < NUM_LEDS; i=i+3) { int pos = i+q; leds[pos] = c; if NUM_LEDS...