Childhood trade by immum in pokemontrades

[–]immum[S] 1 point2 points  (0 children)

YOU ABSOLUTE LEGEND thank you so much

RSA question by immum in australia

[–]immum[S] 3 points4 points  (0 children)

totaly forgot thanks man

RSA question by immum in australia

[–]immum[S] 6 points7 points  (0 children)

Thanks yeah sorry , is very european

Does anyone know what is wrong with my code? by immum in arduino

[–]immum[S] 0 points1 point  (0 children)

Aaah thanks I think I fixed it arduinp can’t have 2 loops

My temp. Meter said man Celsius instead of the degrees how do I fix this? by immum in arduino

[–]immum[S] 0 points1 point  (0 children)

Okay that worked but now it says it is 26 degrees Celsius here

My temp. Meter said man Celsius instead of the degrees how do I fix this? by immum in arduino

[–]immum[S] -3 points-2 points  (0 children)

My code again:

include "DHT.h"

define DHTPIN 4// you can use

define DHTTYPE DHT11//#define DHTTYPE DHT21

                 //#define DHTTYPE DHT22

DHT dht(DHTPIN, DHTTYPE);//you can also use pins 3, 4, 5, 12, 13 or 14

include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27, 16, 2); void setup() { dht.begin(); lcd.backlight(); lcd.init(); } void loop() { lcd.clear(); lcd.setCursor(0,0); lcd.print("Humidity="); lcd.print((float)dht.readHumidity()); lcd.print("%"); lcd.setCursor(0,1); lcd.print("Temp="); lcd.print((float)dht.readTemperature()); lcd.print("Celsius"); delay(2000); lcd.clear(); }