Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. Gunther
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by Gunther

    • Gunther

      Solar cell support with non-rechargeable batteries
      My Project • • Gunther  

      30
      0
      Votes
      30
      Posts
      4167
      Views

      Gunther

      As this thread turns into my personal highlights of silly mistakes: Another word of caution for anybody who wants raw battery values sent: sendBatteryLevel only uses 8-bit: i.e. value from 0-255. Don't try to send your raw 10-bit sensed input from e.g. A0 directly with it. bool sendBatteryLevel(const uint8_t level, const bool ack = false); Make sure you divide by 4 or use something like: int sensorValue = analogRead(ANALOGUE_SENSE_PIN) >> 2; sendBatteryLevel(sensorValue);
    • Gunther

      No communication with NRF24L01 on RPi3 64bit [SOLVED]
      Troubleshooting • • Gunther  

      3
      0
      Votes
      3
      Posts
      866
      Views

      mfalkvidd

      @gunther great work, thanks for sharing! And welcome to the MySensors community