Smart Home Automation Forum
ESP32 RF - Printable Version

+- Smart Home Automation Forum (https://www.kincony.com/forum)
+-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=1)
+--- Forum: KC868-Server Raspberry Pi4 local server (https://www.kincony.com/forum/forumdisplay.php?fid=17)
+--- Thread: ESP32 RF (/showthread.php?tid=2451)

Pages: 1 2 3 4 5


RE: ESP32 RF - Wojtek - 01-22-2023

I downloaded 2 files from this topic: bootloader.zip and partition-table.zip. Where can I find the third file? how to create it?
Uploading only 2 files didn't stop rebooting.
Should I find another factory file from the esp32 manufacturer on the Internet?


RE: ESP32 RF - admin - 01-23-2023

third is your own BIN file, it's user BIN. you compiled by arduino IDE. Do you understand?


RE: ESP32 RF - Wojtek - 01-24-2023

Ok, I created a third file on the Arduino IDE, detected and changed the 6 keycode 433 in my file, exported the compatible binary in the Arduino IDE, flashed the 3 files to esp32 on the server using espressif flash_download_tool. ESP32 does not restart - it's OK. But pressing buttons on the remote doesn't toggling the light.
Is my code in the file written correctly:

.txt   Przełączanie 1-6 znane kody - Kopia.txt (Size: 1.88 KB / Downloads: 204)


RE: ESP32 RF - admin - 01-25-2023

if you use arduino IDE download to ESP32 , this code whether work well?


RE: ESP32 RF - Wojtek - 01-26-2023

What does the code work fine? When I have the Arduino IDE running, then using the Serial Monitor function, I see that the esp32 in Kincony Server detects pressing the RF 433 remote control. But it does not affect the on / off light / relay.


RE: ESP32 RF - admin - 01-26-2023

do you have replaced keycode? every remote have different keycode.
if you can see keycode output value in arduino IDE Serial Monitor, just replace control relay ON/OFF code. if you can't see the keycode when you pressed 433M remote, that's have another problem.


RE: ESP32 RF - Wojtek - 01-26-2023

Yes, i replaced keycode. I see keycode on IDE Serial Monitor when i pressed 433M remote, but relay didn't toggle.


RE: ESP32 RF - admin - 01-27-2023

(01-11-2023, 01:59 AM)admin Wrote: i have tested code, sorry for my before error photo.
just set serial1 pin define as these will be work fine. here is photo.

#ifndef RX1
#define RX1 16
#endif

#ifndef TX1
#define TX1 17
#endif



if you want to eraser all esp32 data, you can use ESP Tool: https://www.kincony.com/esp-module-flash-download-tools.html

see this photo, config the serial port in arduino config file. will be work fine.

[Image: attachment.php?aid=1755]


RE: ESP32 RF - Wojtek - 01-30-2023

I set this RX 1 and TX1, make new .BIN file in Arduino IDE, flash 3 file and now don't detect keycode ind serial monitor and switch don't toggle.


RE: ESP32 RF - admin - 01-31-2023

first step, you need let serial monitor can output keycode when remote button pressed. this step never work?