Navigation

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

    Topics created by Christoph Blank

    • Christoph Blank

      Humidity doesn't receive ACK, everything else works?
      Troubleshooting • • Christoph Blank  

      5
      0
      Votes
      5
      Posts
      512
      Views

      Christoph Blank

      sorry it took a bit - this is my current test: https://gist.github.com/solars/688a635f791c2e558a1ec57b67c9beb4 it's stitched together from sources I have found, so I might not be doing it right.
    • Christoph Blank

      Low power soil moisture sensor (battery)?
      General Discussion • • Christoph Blank  

      3
      0
      Votes
      3
      Posts
      1946
      Views

      pdey

      I'm using miceuz's Chirp I2C sensors here. Found it to be much more reliable and consistent than the cheap analogue sensors, particularly dealing with large outdoor temperature variations. The "rugged" model works a charm. I'm getting about 12 months off 2x AAA batteries, using some aggressive sleeping. As you've surmised, hook up the power in line to a Digital Out so you're not constantly powering the sensor when your board is asleep. You'll need to wait() about 200ms for the board to wake up after supplying power, and take a few dummy readings each time you wake it for it to stabilise.
    • Christoph Blank

      ESP8266/Wemos D1 Mini with RFM69?
      Troubleshooting • • Christoph Blank  

      1
      0
      Votes
      1
      Posts
      883
      Views

      No one has replied

    • Christoph Blank

      RFM69HC doesn't want to send/receive?
      Troubleshooting • • Christoph Blank  

      4
      0
      Votes
      4
      Posts
      1520
      Views

      mihai.aldea

      @Christoph-Blank said: well - the blog post I used for the wiring missed the detail that the RFM69 does not seem to be 5V tolerant (inputs). Can anyone tell me: a) if it is damaged if the inputs had 5V b) how I can adjust the levels, can I do this with resistors or do I need more? I made the same mistake, while connecting the modules VIN pin to the Arduino's 3.3V rail, I failed to read that the RFM69's pins aren't 5V tolerant. After I figured out how to make another pair of RFM69 modules work together, this time at the correct voltage, I tried the first to if they were fried. They weren't. As soon as I connected them to a 3.3V Arduino they worked like a charm. So it's very likely that yours are fine to. As for the correct wiring, some are using voltage dividers to lower the signal pins voltage down to 3.3V. Others are using logic level converters. Me, I was lucky engough to have a couple of chinese 3.3V Arduino Pro Mini boards ordered a long time ago and never used since. For minimal clutter, I'd suggest using the same setup. The cheapest 3.3V options are the Arduino Pro Mini (my model) but you'll also need some USB to TTL dongles (the ones having a DTR pin) to program them. Or you may use something like: http://www.ebay.com/itm/Pro-Micro-3-3V-8M-5V-16M-atmega328-Replace-ATmega128-Arduino-Compatible-Nano-/172446438226 but notice that this one doesn't use the ATmega328 chip but ATmega32U4 and that will require these lines of code at the top of your sketches: For MySensors 2.0 #define MY_RF69_SPI_CS 8 #define MY_RF69_IRQ_PIN 7 #define MY_RF69_IRQ_NUM 4 For MySensors 2.1.0beta (RSSI report added amongst a lot of other improvements) #define MY_RFM69_SPI_CS 8 #define MY_RFM69_IRQ_PIN 7 #define MY_RFM69_IRQ_NUM 4 Note the slight difference between the two.