Navigation

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

    wardur

    @wardur

    0
    Reputation
    3
    Posts
    265
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    wardur Follow

    Best posts made by wardur

    This user hasn't posted anything yet.

    Latest posts made by wardur

    • HC-06 RS232

      I´m using the HC-06 RS232 Busplatine and want to send a editable String with the libary
      #include <SoftwareSerial.h>
      #include <Wire.h>
      and
      SoftwareSerial blueSerial(PIN_RECEIVE, PIN_SEND);
      blueSerial.write(String);

      The problem is it can´t be read any Strings and the values of sensors are written as a non-alphabet, non-number thing.

      posted in Troubleshooting
      wardur
      wardur
    • RE: BME 280 how to use it?
      /***************************************************************************
        This is a library for the BME280 humidity, temperature & pressure sensor
        Designed specifically to work with the BME280 Breakout board
        ----> http://www.adafruit.com/products/2650
        This sketch only supports the I2C bus for connection.
       ***************************************************************************/
      
      #include <Wire.h>
      #include "cactus_io_BME280_I2C.h"
      
      // Create the BME280 object
      BME280_I2C bme;          
      // I2C using default 0x77 
      // or
      //BME280_I2C bme(0x76);  // I2C using address 0x76
      
      void setup() {
        Serial.begin(9600);
        Serial.println("Bosch BME280 Barometric Pressure - Humidity - Temp Sensor | cactus.io"); 
      
        if (!bme.begin()&&!bmee.begin()) {
          Serial.println("Could not find a valid BME280 sensor, check wiring!");
          while (1);
        }
      
        bme.setTempCal(-1);
        
        Serial.println("Pressure\tHumdity\t\tTemp\t\tTemp");
        
      }
      
      void loop() {
      
          bme.readSensor(); 
        
          Serial.print(bme.getPressure_MB()); Serial.print("\t\t");    // Pressure in millibars
          Serial.print(bme.getHumidity()); Serial.print("\t\t");
          Serial.print(bme.getTemperature_C()); Serial.print(" *C\t");
          Serial.print(bme.getTemperature_F()); Serial.println(" *F\t");
      
          // add a 2 second delay to slow down the output
          delay(2000);
      }
      

      i use this code and he can´t find a device:/

      posted in Troubleshooting
      wardur
      wardur
    • BME 280 how to use it?

      I bought a BME 280 and don´t know how to wire it, because the sensor is different to the normal ones.
      0_1504641730954_11.jpg

      posted in Troubleshooting
      wardur
      wardur