Datenübertragung ESP8266 mit HC05 auf ESP32 Micropython #13782
Replies: 2 comments 4 replies
-
Hallo, nochmal weil fehlerhaft! Hat das etwas txbuf zu tun, die sehen ja etwas anders aus. Also es kommen überhaupt nichts an, jedenfalls empfange ich keine Daten |
Beta Was this translation helpful? Give feedback.
-
The ESP8266 does not support BLE, so you cannot use it. It supports WLAN, which works fine between ESP8266 and ESP32 using the ESP-Now package. |
Beta Was this translation helpful? Give feedback.
-
Hallo,
vorab, ich bin Anfänger und 75 Jahre alt.
Ich hatte bisher Temperaturdaten von ESP32 zu ESP32 mit dem HC05 übertragen.
Bevor die Frage kommt, warum ich das interne BLE nicht benutze, bin nicht mit klar gekommen. Ich nutze Micropython und Thonny.
Nun wollte ich Daten vom ESP8266 mit dem HC05 auf den ESP32 übertragen, dachte kein Problem, falsch gedacht.
UART am ESP8266 (Sender):
UART(1, baudrate=9600, bits=8, parity=None, stop=1, rxbuf=15, timeout=0, timeout_char=2)
UART am ESP32 (Sender) bisher läuft problemlos:
UART(2, baudrate=9600, bits=8, parity=None, stop=1, tx=17, rx=16, rts=-1, cts=-1, txbuf=256, rxbuf=256, timeout=0, timeout_char=0)
Hat das etwas txbuf zu tun, die sehen ja etwas anders aus.
Also es kommen überhaupt an, jedenfalls empfange ich keine.
Hat jemand eine Idee!?
Klaus
Beta Was this translation helpful? Give feedback.
All reactions