GithubHelp home page GithubHelp logo

esphome-espnow's Introduction

Phong Vũ

CTO and TechLead at BraveBits/PageFly

  • Software Engineer
  • Hardware Engineer
  • Graphic Designer

esphome-espnow's People

Contributors

iphong avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

esphome-espnow's Issues

Channel setting is not wifi channel, and workarounds

I spent some time to make this work, so I'll share my findings here to save some time to the next person :)

Findings:

  1. The channel passed to begin is not the wifi channel, which is very important if only one of the sensors is connected to wifi.
  2. Setting the third param of "esp_now_add_peer" to the channel somehow also doesn't work in keeping the channel.
  3. Don't use power_save_mode: HIGH in the receiver wifi component (doh!)
  4. Set the channel on the sender right before sending, using wifi_set_channel(RECEIVER_WIFI_CHANNEL);

If the receiver device is connected to wifi and the sender isn't (typical battery application), then the receiver will be listening in whatever channel the wifi AP is. To fix this, change the channel of the sender right before sending:

sensor:
  - platform: adc
    pin: A0
    name: "battery-sensor v"
    on_value:
      then:
        - lambda: |-
            wifi_set_channel(RECEIVER_WIFI_CHANNEL); // <---- this!
            EspRC.send("battery-sensor-v", String(x, 5));

yes, it has too be done before sending and every time. I don't know why.

Deep sleeping right after works perfectly.

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.