float U;
float I;
float R;
// Declaração de variaveis
void setup() {
Serial1.begin(115200);
U= 12;
I= 0.95;
// valores declarados
R = U/I;
// Cálculo da resistência
Serial1.print("R= ");
Serial1.print(R);
Serial1.print(" ohms");
//valor mostrado no serial
}
void loop() {
// put your main code here, to run repeatedly:
delay(1); // this speeds up the simulation
}