Accéder au contenu principal

Articles

Affichage des articles associés au libellé RF

Add of LORA technology to OpenMQTTGateway

The V0.9.1 release of  OpenMQTTGateway  will introduce the compatibility with LORA RF technology based on the work of  Sandeep MISTRY . LORA is a technology used on Low Power Wide Area Network, the 3 first words of this definition are very interesting. Indeed in home automation we are often faced against the challenge of range and working with battery powered device. LORA solves both problems by its low power consumption and its "kms" range. The first tests on OMG  has been done with the TTGO LORA boards based on ESP32. They are delivered with an antenna and an embedded display. Quite usefull for the first tests. Note that the modules I bought had already a sender and receiver program flashed! If you want to reflash these programs you can find them here: https://github.com/LilyGO/TTGO-LORA32-V2.0 You can use this library for the display: https://github.com/osresearch/esp32-ttgo/blob/master/libraries/OLED.zip These modules combined with ...

Making your RF 433mhz sensors and devices communicate with your home automation, gateways comparison

After more than one year of usage of home automation (HA) I have seen that one critical point is the communication between the sensors/devices and the HA system.  There is several possibilities for that: Infrared 5,8ghz 2,4ghz 867mhz 433mhz wire ... And for each of these possibility we can have a huge amount of different protocols. The goal of this article is to draft a list of the 433mhz gateways that can be found. We will focus on 433mhz due to the fact that i n european countries 433mhz devices/sensors are quite easy to find and with a correct price. We will take the following citerias: Price DIY complexity Number of protocols taken into account Complexity of home automation integration And take a look at RFXCom, RFLink, 433toMQTTto433 ESP8266, 433Utils, Broadlink RM... I will put in green the keypoints of each gateway. E&R = 433mhz emitter and receiver, can be a FS1000A and a XD-RF-5V or a superheterodyne one (recommended)

Low cost low power room sensor with atmega328p and 433mhz transmission

Following my first build of an external garden sensor, here is a simplified version with temperature, humidity and battery voltage measurement for a baby bedroom [EDIT] feedback about the expected battery duration here The requirements are: cheap long battery life, the atmega328p run at 8mhz with minimal components and functions under 8€ wireless (433Mhz) with good range (2 walls to cross and 10 meters) Here is the final view attached to a lion for decoration: And a report from OpenHab displaying the sensor data: If you want more details about energy power consumption the first article on this subject is more detailled. Now let's see how to build this. Bill of material The sensors is based on atmega328p (3€),  a 433 Mhz transmitter (1,5€) , a DHT22 temperature and humidity sensor (4€), a 433 mhz antenna (0,18€) DIP socket adaptor for the ATmega (1€) an electronic prototype printed circuit board (0,5€) At total we...

Infrared IR, 433mhz and MQTT on ESP8266 bidirectional gateway OpenMQTTGateway

Following discussions on the home assistant forum people gave me the idea to add Infrared communication to the 433mhz gateway.  The goal is to act as a gateway between 433Mhz sensors, infrared remote controls and a MQTT broker or between the MQTT broker and 433Mhz actuators, infrared devices, It enables to: receive MQTT data from a topic and send RF 433Mhz signal corresponding to the received MQTT data  publish MQTT data to a different topic related to received 433Mhz signal  receive MQTT data from a topic and send infrared signal corresponding to the received MQTT data  publish MQTT data to a different topic related to received infrared signal  It can be an interesting part in an home automation system so as to interface sensors and actuators (wall sockets), your tv, home cinema, hifi ... with software like  openhab  or home assistant . List of compatible RF sensors here [EDIT] all infos are now centralized into the github repository  ...