Navigation

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

    Best posts made by Oleg Greengo

    • RE: devDuino Sensor Node V1.3 (ATmega 328)

      I will add all the information will understand only how to do it right on your site. Thank you.

      posted in OpenHardware.io
      Oleg Greengo
      Oleg Greengo
    • RE: DevDuino v2.2 with EEPROM

      Try it this way

      #include <SPI.h>
      #include <MySensor.h>
      #include <MyTransportNRF24.h>
      #include <Vcc.h>

      const float VccMin = 2.00.6; // Minimum expected Vcc level, in Volts. Example for 2xAA Alkaline.
      const float VccMax = 2.0
      1.5; // Maximum expected Vcc level, in Volts. Example for 2xAA Alkaline.
      const float VccCorrection = 3.07/3.04; // Measured Vcc by multimeter divided by reported Vcc

      Vcc vcc(VccCorrection);

      int TEMP_SENSE_PIN = A3; // select the input pin for the battery sense point
      float TEMP_SENSE_OFFSET = -0.01;

      #define CHILD_ID_TEMP 0

      //MySensor gw (8,7);
      MyTransportNRF24 transport(7, 6);
      MySensor gw(transport);

      posted in Hardware
      Oleg Greengo
      Oleg Greengo