12-02-2024, 14:50
(Ten post był ostatnio modyfikowany: 12-02-2024, 19:27 przez SpalonaATmega.)
mam z tym kodem problem bo w miejscach :
if( readValue < 450){
lcd.print("Niski")
}else if( readValue < 720){
lcd.print("Sredni")
}else{
lcd.print("Wysoki")
}
wystepuje jakis problem ze po prostu wyskakuje Error
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x3F, 16, 2);
int readPin = A0;
int readValue;
void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
pinMode(readPin, INPUT);
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
readValue = analogRead(readPin);
lcd.clear();
lcd.setCursor(0,0),
lcd.print("Poziom Wody:");
lcd.setCursor(0,1)
if( readValue < 450){
lcd.print("Niski")
}else if( readValue < 720){
lcd.print("Sredni")
}else{
lcd.print("Wysoki")
}
delay(1000);
}
if( readValue < 450){
lcd.print("Niski")
}else if( readValue < 720){
lcd.print("Sredni")
}else{
lcd.print("Wysoki")
}
wystepuje jakis problem ze po prostu wyskakuje Error
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x3F, 16, 2);
int readPin = A0;
int readValue;
void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
pinMode(readPin, INPUT);
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
readValue = analogRead(readPin);
lcd.clear();
lcd.setCursor(0,0),
lcd.print("Poziom Wody:");
lcd.setCursor(0,1)
if( readValue < 450){
lcd.print("Niski")
}else if( readValue < 720){
lcd.print("Sredni")
}else{
lcd.print("Wysoki")
}
delay(1000);
}