Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
W

wardur

@wardur
About
Posts
3
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • HC-06 RS232
    W wardur

    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.

    Troubleshooting

  • BME 280 how to use it?
    W wardur
    /***************************************************************************
      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:/

    Troubleshooting

  • BME 280 how to use it?
    W wardur

    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

    Troubleshooting
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular