Navigation

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

    Topics created by marekd

    • marekd

      Home made "Arduino with power supply" + relay board + DHT11
      My Project • • marekd  

      1
      2
      Votes
      1
      Posts
      1768
      Views

      No one has replied

    • marekd

      Multi sensor node - Rc433MHz, 2xRelay, DHT11
      My Project • • marekd  

      1
      4
      Votes
      1
      Posts
      1198
      Views

      No one has replied

    • marekd

      Status rading Node
      Development • • marekd  

      3
      0
      Votes
      3
      Posts
      1015
      Views

      marekd

      @sundberg84 yes,yes,yes. Thanks! btw nice project
    • marekd

      My New IrrigationController
      My Project • • marekd  

      23
      5
      Votes
      23
      Posts
      10066
      Views

      marekd

      @karl261 Capacitor is not so big generally helps. I my wiring there is no pull-up resistors at I2C lines. Rest is the same.
    • marekd

      BMP280 + I2C
      My Project • • marekd  

      11
      4
      Votes
      11
      Posts
      30347
      Views

      nbenm

      @emc2 said in BMP280 + I2C: @marekd glad it was useful. You may not need to change the address in the library. If you add these 2 lines after #include <Adafruit_BME280.h> it should work without modifications of the library and so survive any future library updates. #undef BME280_ADDRESS // Undef BME280_ADDRESS from the BME280 library to easily override I2C address #define BME280_ADDRESS (0x76) // Low = 0x76 , High = 0x77 (default on adafruit and sparkfun BME280 modules, default for library) Thanks for this good idea, but it doesn't always work. It's better to add the define before the include, in the sketch. And to replace in the lib #define BMP280_ADDRESS by #ifndef BME280_ADDRESS #define BME280_ADDRESS (0x77) #endif Of course if library updates...