devWaves
devWaves
hey thanks for confirming. some esp32s dev boards are just built better than others so good to know those that work long term. Ill update the docs when I am...
Hey, Yes I will try to add soon. Been busy with newborn baby
I think the latest bot firmware supports 3 modes. I haven't tried the new 'custom' mode yet though or how it interact with my code modes : switch, press, custom...
have you started with a fresh arduino install and cleared out the ~/Documents/Arduino/libraries folder ? you could have a conflicting wifi library what esp32 model are you using?
not sure. I can't reproduce Does you SSID or password has special or non-alphanumeric characters?
in order to do that you would need to break them up as 2 devices You would then send 2 seperate commands from the esp32, one to each curtain when...
I have 5 buttons. only one worked after the update. 4 did not. I got them all working this way https://github.com/Koenkk/zigbee2mqtt/issues/18515#issuecomment-2127507461
@AdyRock from quick testing: If you want Brightness and RGB you would do... (using 0x12) ```[0x57, 0x0F, 0x47, 0x01, 0x12, 0x32, 0xFF, 0x00, 0x00] ``` if you want just RGB...
if you want to use password you can make some minor code change to the python code Example password = 'testpassword' Steps 1) get the CRC32 4 byte hexadecimal value...
> https://github.com/devWaves/SwitchBot-MQTT-BLE-ESP32/blob/6276427803756c1f0b98bf3e9d8c8da78d048ad7/Arduino%20IDE%20Files/SwitchBot-BLE2MQTT-ESP32.ino#L689-L695 > > ```c > static byte bArrayPressPass[] = {0x57, 0x11, NULL, NULL, NULL, NULL}; > static byte bArrayOnPass[] = {0x57, 0x11, NULL , NULL, NULL, NULL, 0x01}; >...