Hey Carsten,
Thanks for the reply. I have the ArduiTouchMOD with the 2.4" screen. My RSSI is -42 dBm which I think is ok. I am doing some more experimenting as I found another issue with OH3. I was getting an error from openhab stating:
javax.ws.rs.WebApplicationException: HTTP 415 Unsupported Media Type
Other people were having problems using the API with some existing developed tools and their solution was to add a Content-Type of text/plain to the header as an easy fix so I went into the openhab_connector.cpp and added in http.addHeader("Content-Type", "text/plain");
to the item::publish() and Item::update() functions. Seems to be happy now with switches. The next issue I have is as soon as I link an item to a slider the esp32 seems to reset when I go into that menu with the slider in it (exactly like when it auto resets itself every few minutes). I’m wondering if they are linked in someway.
Is there any way to debug the serial via wifi or something? I can’t debug the screen if I disconnect the ESP32 from the arduitouch and connect it to USB.
----------------EDIT---------------------
Ok I didn’t realise connecting solely via USB would power the whole thing… oops. When I enter the menu with a slider I get a panic and the whole thing reboots. This is the error:
[AC] http server started
Guru Meditation Error: Core 1 panic'ed (LoadProhibited). Exception was unhandled.
Core 1 register dump:
PC : 0x400edb13 PS : 0x00060c30 A0 : 0x800edc61 A1 : 0x3ffb1d30
A2 : 0x00000000 A3 : 0x00000000 A4 : 0x3ffb1e51 A5 : 0x0000000c
A6 : 0x00000000 A7 : 0x00000000 A8 : 0x00000000 A9 : 0xffffffff
A10 : 0x00000073 A11 : 0x0000002b A12 : 0x00000004 A13 : 0x0000002d
A14 : 0x00000002 A15 : 0x00000030 SAR : 0x00000016 EXCCAUSE: 0x0000001c
EXCVADDR: 0x00000000 LBEG : 0x4000c2e0 LEND : 0x4000c2f6 LCOUNT : 0xffffffff
Backtrace: 0x400edb13:0x3ffb1d30 0x400edc5e:0x3ffb1da0 0x400e8dda:0x3ffb1dd0 0x400dd3fd:0x3ffb1e30 0x400deb8e:0x3ffb1e80 0x400dec91:0x3ffb1ed0 0x400d908a:0x3ffb1f30 0x4010a6a5:0x3ffb1fb0 0x4008ab55:0x3ffb1fd0
Rebooting...
Any Idea what this could be? The sitemap is simply a dumbed down version of yours:
sitemap oheztouch label="ArduiTouch KE WS2"
{
Switch item=ff_bedroom3_ledstrip_power
Text label="LED Light" icon="colorlight"
{
Slider item=ff_bedroom3_ledstrip_brightness label="Geschwindigkeit" minValue=0 maxValue=100 step=5
}
}
Rexz