MeTempandhumid?


#1

I bought the option Me Temperature and Humidity Sensor.
On the web page of MakeBlock :
http://learn.makeblock.com/me-temperature-and-humidity-sensor/

It’s explaining how to program it with Arduino. It’s needed MeTempandHumid by updating the Makeblock library .
It’s done but It’s not install on my computer.

Does any of you know where to find the update block ?

NB : I want to use it on an mBot Robot .

Thanks for your help


#2

@LHE1071 - try to use MeHumiture instead.
Following code works for me:
`

MeHumiture tmp(PORT_8);

void setup() {Serial.begin(9600);}

void loop() {  tmp.update();
  Serial.println(tmp.getTemperature());
  Serial.println(tmp.getHumidity());
}

`


#3

Thanks,
It’s running Ok on my mBot.


#4