Giter Club home page Giter Club logo

bathroom_metrics's People

Contributors

kibab avatar

Watchers

 avatar  avatar

bathroom_metrics's Issues

How to reduce your power rate on ESP

Hello, I have some suggestions on how to reduce your power rate on you DIY project.

  1. Use static IP it will reduce time of new connection to router after wakeup.
    For example:
    #define ssid "kibab"
    #define password "0612748587"
    #define DHCP true
    IPAddress local_IP(192, 168, 0, 61);
    IPAddress gateway(192, 168, 0, 1);
    IPAddress subnet(255, 255, 255, 0);
    IPAddress primaryDNS(192, 168, 0, 1);
    IPAddress secondaryDNS(8, 8, 4, 4);
    #define chanal 6 //wifi channel
    byte macAP[6] = {0xF8, 0x1A, 0x67, 0x86, 0x14, 0x70}; //router mac

  2. On ESP you can use several SLEEP-modes
    modem-sleep
    light-sleep
    deep-sleep (you should try this one)
    There is a good article on this topic https://smartideal.net/kak-ispolzovat-deep-sleep-na-esp8266-nodemcu/
    NB: Notice, that you can push your device to sleep mode without disconnecting and turning your WIFI off.

  3. BME280 - you should put it on sleep too (power mode - sleep)
    https://github.com/adafruit/Adafruit_BME280_Library/blob/master/Adafruit_BME280.h line 343
    Here is a sample https://www.youtube.com/watch?v=O8FgrHR2laM

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.