Navigation

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

    James Flosse

    @James Flosse

    1
    Reputation
    15
    Posts
    396
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    James Flosse Follow

    Best posts made by James Flosse

    • RE: 💬 Atmospheric Pressure Sensor

      @bgunnarb you are find the problem, i think i have arduino pro mini 3.3V but it's 5V. Thx very much it's work better now 🙂

      posted in Announcements
      James Flosse
      James Flosse

    Latest posts made by James Flosse

    • RE: Domoticz,raspberry pi and arduino and drf1278dm

      Sorry for my poor english im french.
      They havent solution for use only the tx/rx pin on both raspberry pi and arduino?

      posted in Feature Requests
      James Flosse
      James Flosse
    • RE: Domoticz,raspberry pi and arduino and drf1278dm

      Ok thx, but i think it's could be possible to use it TX/RX pin on arduino. It's transparent wireless communication.

      posted in Feature Requests
      James Flosse
      James Flosse
    • Domoticz,raspberry pi and arduino and drf1278dm

      Hi all. I have a question.
      Can i use drf1278dm with it ?
      Best regards

      posted in Feature Requests
      James Flosse
      James Flosse
    • RE: 💬 Atmospheric Pressure Sensor

      @bgunnarb you are find the problem, i think i have arduino pro mini 3.3V but it's 5V. Thx very much it's work better now 🙂

      posted in Announcements
      James Flosse
      James Flosse
    • RE: 💬 Atmospheric Pressure Sensor

      Yes ^^ . can you give me at snyp_thx at hotmail dot fr?

      posted in Announcements
      James Flosse
      James Flosse
    • RE: 💬 Atmospheric Pressure Sensor

      Have you link for older library? Are you french?

      posted in Announcements
      James Flosse
      James Flosse
    • RE: 💬 Atmospheric Pressure Sensor

      i tested with 3.3V and 5volt but same result
      http://www.banggood.com/fr/GY-68-BMP180-Digital-Barometric-Pressure-Sensor-Board-Module-p-1059025.html?rmmds=myorder

      posted in Announcements
      James Flosse
      James Flosse
    • RE: 💬 Atmospheric Pressure Sensor

      I supply itwith the 3.3 V output off arduino

      posted in Announcements
      James Flosse
      James Flosse
    • RE: 💬 Atmospheric Pressure Sensor

      I bought it in banggood, but it work's before...

      posted in Announcements
      James Flosse
      James Flosse
    • RE: 💬 Atmospheric Pressure Sensor
      #include <Wire.h>
      #include <Adafruit_Sensor.h>
      #include <Adafruit_BMP085_U.h>
         
      Adafruit_BMP085_Unified bmp = Adafruit_BMP085_Unified(10085);
       
      void setup(void) 
      {
        Serial.begin(9600);
        Serial.println("Pressure Sensor Test"); Serial.println("");
        
        /* Initialise the sensor */
        if(!bmp.begin())
        {
          /* There was a problem detecting the BMP085 ... check your connections */
          Serial.print("Ooops, no BMP085 detected ... Check your wiring or I2C ADDR!");
          while(1);
        }
      }
       
      void loop(void) 
      {
        /* Get a new sensor event */ 
        sensors_event_t event;
        bmp.getEvent(&event);
       
        /* Display the results (barometric pressure is measure in hPa) */
        if (event.pressure)
        {
          /* Display atmospheric pressure in hPa */
          Serial.print("Pressure: "); Serial.print(event.pressure); Serial.println(" hPa");
        }
        else
        {
          Serial.println("Sensor error");
        }
        delay(250);
      }
      
      Pressure: 756.46 hPa
      Pressure: 756.47 hPa
      Pressure: 756.49 hPa
      Pressure: 756.44 hPa
      Pressure: 756.44 hPa
      Pressure: 756.46 hPa
      Pressure: 756.41 hPa
      Pressure: 756.44 hPa
      Pressure: 756.42 hPa
      Pressure: 756.39 hPa
      Pressure: 756.42 hPa
      Pressure: 756.44 hPa
      Pressure: 756.38 hPa
      Pressure: 756.40 hPa
      Pressure: 756.41 hPa
      Pressure: 756.38 hPa
      Pressure: 756.41 hPa
      Pressure: 756.40 hPa
      Pressure: 756.38 hPa
      Pressure: 756.40 hPa
      Pressure: 756.42 hPa
      Pressure: 756.34 hPa
      Pressure: 756.22 hPa
      Pressure: 756.33 hPa
      Pressure: 756.37 hPa
      Pressure: 756.38 hPa
      
      

      same pressure

      posted in Announcements
      James Flosse
      James Flosse