Maaciej

Results 7 issues of Maaciej

Auto discovery is complicated, it is not working for me, I don't understand what it tries to do, so I played with code. *************** save-configuration.h new function *********************************************** ``` void...

Changes made to run program and then some customisations. List of things done: - correction of WiFi connection - added service of wake button - changed time/date formatting - changed...

I noticed it before, readings of soil humidity increases in correlation with lowering battery level: ![snap0000735](https://user-images.githubusercontent.com/35972207/186379668-6a9a4362-a6aa-4ffd-ae2c-b878c54a187d.png) now made "laboratory test", with lilygrow in glass, first there was evaporating, I fixed...

First readings of battery voltage were very unstable for me, not good for automating battery monitoring: ![First battery cycle, multiple radical dropdowns](https://user-images.githubusercontent.com/35972207/184957312-5e7074b5-1f5b-4b0a-ad48-58f265a5a96d.png) ![next cycle](https://user-images.githubusercontent.com/35972207/184957390-95ee77dc-c5db-450e-8d28-ef67593c49d7.png) TL;DR moving voltage reading to the...

config.sleep5no is always 0, because it is never set to sleep5no Workaround: in save-configuration.h change this `plant["sleep5Count"] = config.sleep5no;` to this `plant["sleep5Count"] = sleep5no;`

It appears 7 meters with two walls is too much for LILYGO TTGO-T-HIGrow to maintain WiFi connection and I think possibility to monitor the RSSI counter can be useful. Example...

Wake button does nothing, but when you change in go-to-deep-sleep.h THIS ` esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP * uS_TO_S_FACTOR);` TO THAT ``` esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP * uS_TO_S_FACTOR); esp_sleep_enable_ext1_wakeup(GPIO_SEL_35, ESP_EXT1_WAKEUP_ALL_LOW); ``` Wake button does the same what...