//
// TP1: Control digital de temperatura
//
// Integrantes:ERNESTINA ARAMAYO,DIANELA BRUNO
//
// Docente a cargo: Christian Buzzio
//
// 09/05/2023 - 16/05/2023
//
void setup() {
// put your setup code here, to run once:
pinMode(10,OUTPUT);
pinMode(13, OUTPUT);
pinMode(2, OUTPUT);
pinMode(9, INPUT_PULLUP);
pinMode(12, INPUT_PULLUP);
pinMode(3, INPUT_PULLUP);
Serial.begin(115200);
int temp;
temp= 24;
int a;
a=22;
int b;
b =26;
int estadoBoton;
estadoBoton = digitalRead(9);
Serial.print(estadoBoton);
if(temp>a){
}
}
void loop() {
// put your main code here, to run repeatedly:
}