Search found 37 matches

by palnic
Friday 06 February 2026 17:09
Forum: Other questions and discussions
Topic: Tuya TS0601_knob_dimmer_switch
Replies: 0
Views: 47

Tuya TS0601_knob_dimmer_switch

I have https://www.zigbee2mqtt.io/devices/TS0601_knob_dimmer_switch.html . Zigbee2mqtt supports it and I can get intensity as well as color temperature data.{
"adjustment_mode": "brightness",
"color_temp": 178,
"group_id": null,
"linkquality": 174,
"mode": null,
"power_on_behavior": null ...
by palnic
Tuesday 29 October 2024 14:19
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

Sorry, I didn't try to change color settings, someone asking me every day when light is going to work. But everything is working fine and I want to say thanks Thorgal789 for your help.
by palnic
Thursday 24 October 2024 20:16
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

You are right!

"-DLCD_WIDTH=240",
"-DLCD_HEIGHT=320", do nothing, can ignore

"-DTFT_RGB_ORDER=1" I can't see any difference with or without

I understand it is hard to make everyone happy, so "-DTFT_RGB_ORDER=1" does it job to increase a font.
Thanks a lot for your help!
by palnic
Wednesday 23 October 2024 21:17
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

Ok. I downloaded the latest branch "test".Changes I made:
esp32-2432S024R.json:
"-DLCD_WIDTH=240",
"-DLCD_HEIGHT=320",

platformio.ini:
-DTOTAL_ICONX=1 # How many icon widht
-DTOTAL_ICONY=3 # How many icon Heigh
-DDEVICE_SIZE=3 # Device display size
-DFASTCLIC=1
-DFORCE_CONFIG=1

I am not 100% sure ...
by palnic
Wednesday 23 October 2024 17:22
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

Ok. Looks like everything works now. All I did is:
Screen_driver.cpp
touchscreen2.setRotation(global_config.rotateScreen ? 2 : 0);
tft.setRotation(global_config.rotateScreen ? 4 : 0);

esp32-2432S024R.json
"-DTFT_HEIGHT=320",
"-DTFT_WIDTH=240",
"-DLCD_WIDTH=240",
"-DLCD_HEIGHT=320",

I am in the ...
by palnic
Tuesday 22 October 2024 20:56
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

"It's possible the touchpad was in landscape..", where I can change touchpad to the portrait. I want to display only three devices and want them to take the whole screen. Please show me where I can do this and play with the fonts. Thanks
by palnic
Tuesday 22 October 2024 20:08
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

Wifi issue has been fixed, I turned ON "-DFORCE_CONFIG" and now I can connect to WiFi. Can't set trusted network at Domoticz, working to fix it
by palnic
Tuesday 22 October 2024 18:52
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

Thank you for prompt response. Even if I hardcoded SSID "strcpy(global_config.wifiSSID, "RpiNet");" in main.cpp the serial monitor says "


rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode ...
by palnic
Monday 21 October 2024 21:01
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

Now is a new issue. After board is loaded I can see calibration screen with calibration mark and can perform a calibration.Than "Connecting to WiFi" screen comes up and stop. "Reset" button dosn't responsive
by palnic
Monday 21 October 2024 19:51
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

"-DUSE_HSPI_PORT=1", it did a trick.
Calibration working now, I use it in a Portrait mode. Trying to connect to wifi. Thanks a lot!
by palnic
Friday 18 October 2024 20:16
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

I have changed "-DILI9341_DRIVER=1",at esp32-2432S024R.json. Looks good but touch doesn't works
by palnic
Thursday 17 October 2024 22:25
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

Other settings:
screen_driver.cpp
disp_drv.hor_res = TFT_WIDTH;
disp_drv.ver_res = TFT_HEIGHT;
tft.setRotation(global_config.rotateScreen ? 4 : 0);
by palnic
Thursday 17 October 2024 22:05
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

Thanks a lot! I was able to get a message, "Calibrate Screen", But something wrong with the resolution. No matter what value I put in esp32-2432S024R.json file
"-"DTFT_HEIGHT=320",
"-DTFT_WIDTH=240",
Screen stay the same orientation. Here is a warning I got:

In file included from .pio/libdeps ...
by palnic
Wednesday 16 October 2024 17:46
Forum: General Discussion
Topic: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)
Replies: 253
Views: 45418

Re: New project, a small wall display to control Domoticz using CYD (Cheap ESP32 touchscreen)

It was my mistake from beginning to use capacitive board esp32-2432S024C. Everything works fine, thanks to Thorgal789, but it is really hard to make any adjustment on the small screen. I want to move to esp32-2432S024R display, could you please add this board to your project. Thanks
by palnic
Monday 15 April 2024 16:38
Forum: Other questions and discussions
Topic: Gecko in.touch.2
Replies: 1
Views: 439

Gecko in.touch.2

Is anybody was able to add Gecko in.touch.2 to Domoticz? I will greatly appreciate any info.