Sonoff RF Bridge 433 MHz

arendst/Tasmota Wiki · GitHub
https://github.com/arendst/Tasmota/wiki/Sonoff-RF-Bridge-433

https://ubidots.com/blog/sonoff-rf-bridge-433mhz-hack-using-tasmota/

Tasmota Template
https://templates.blakadder.com/sonoff_RF_bridge.html

Tasmota Binaries
https://github.com/arendst/Tasmota/releases

Sonoff 433Mhz RF-Bridge konfigurieren und Steckdosen anlernen
https://nerdiy.de/tasmota-sonoff-433mhz-rf-bridge-konfigurieren-und-steckdosen-anlernen/

Tasmota RF Bridge Binaries
https://github.com/arendst/Tasmota/tree/development/tools/fw_SonoffRfBridge_efm8bb1

Tasten per URL bedienen:
http://192.168.0.24/cm?cmnd=rfkey3

Template:
{„NAME“:“Sonoff Bridge“,“GPIO“:[32,3200,1,3232,1,1,0,0,1,320,1,0,0,0],“FLAG“:0,“BASE“:25}

MQTT

https://www.msxfaq.de/sonst/iot/mqtt.htm

MQTT mit ESP8266 (SSL)

Lange habe ich versucht mit SSL von dem ESP8266 mit dem MQTT Broker Kontakt aufzunehmen, vieles schlug fehlt.

Nach vielem Suchen im Internet habe ich folgendes Video mit Code (bei Github) gefunden: Hier wird die BearSSL Library statt der WiFiClientSecure verwendet. .

https://github.com/debsahu/ESP_MQTT_Secure

Gleich im Intro wird auf ein anderes Beispiel bei Github verwiesen:

https://github.com/256dpi/arduino-mqtt/blob/master/examples/AdafruitHuzzahESP8266Secure/AdafruitHuzzahESP8266Secure.ino

Und hier findet sich eine Zeile Code, mit der man die Valifierung erstmal abschalten kann:

  // do not verify tls certificate
  // check the following example for methods to verify the server:
  // https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266WiFi/examples/BearSSL_Validation/BearSSL_Validation.ino
  net.setInsecure();

https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-the-mosquitto-mqtt-messaging-broker-on-ubuntu-18-04-quickstart