Giter Site home page Giter Site logo

esphome_alecto's Introduction

esphome_alecto

EspHome Alecto wheater station component

The component supports LIDL wheather station H13726 which communicates using alecto protocol. The protocol is described here: https://wiki.pilight.org/auriol_protocol_v20.pdf

Hardware

To use this component you will need esp32 or esp8266 and generic 433 MHz receiver.

Setup

remote receiver component works good using following settings:

remote_receiver:
  id: receiver
  pin: 
    number: GPIO27
  idle: 6ms
  filter: 200us
  tolerance: 35%

You will need to set id's of wind/temperature and rain sensor here (0x6c - wind and 0x0b - rain in example):

sensor:
- platform: custom
  lambda: |-
    auto alecto_receiver = new AlectoComponent(id(receiver),0x6c,0x0b);
    App.register_component(alecto_receiver);
    return {&alecto_receiver->tempSensor, &alecto_receiver->humiditySensor, &alecto_receiver->rainSensor,  &alecto_receiver->windAvgSensor,  &alecto_receiver->windGustSensor,  &alecto_receiver->windDirSensor,  &alecto_receiver->tempBatterySensor,  &alecto_receiver->rainBatterySensor};
  sensors:
  - name: "Temperature meteo"
    unit_of_measurement: °C
    accuracy_decimals: 1
  - name: "Humidity meteo"
    unit_of_measurement: "%"
    accuracy_decimals: 0
  - name: "Rain meteo"
    unit_of_measurement: "mm"
    accuracy_decimals: "1"
  - name: "Wind avg meteo"
    unit_of_measurement: "m/s"
    accuracy_decimals: "1"
  - name: "Wind gust meteo"
    unit_of_measurement: "m/s"
    accuracy_decimals: "1"
  - name: "Wind dir meteo"
    unit_of_measurement: "°"
    accuracy_decimals: "1"
  - name: "Battery temp meteo"
    unit_of_measurement: "%"
    accuracy_decimals: "0"
  - name: "Battery rain meteo"
    unit_of_measurement: "%"
    accuracy_decimals: "0"

The id's of sensors are shown in esphome log sou you can figure it out there and set it to yours. The ids will be reset after battery change. The rain and wind/temp sensors transmits data every few minutes.

esphome_alecto's People

Contributors

maciekczwa avatar

Stargazers

 avatar aronk avatar gr4viton avatar

Watchers

 avatar James Cloos avatar  avatar

Forkers

romain1206 airy10

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.