Soma no Arduíno
int x, y, z, soma;
void setup() {
// put your setup code here, to run once:
//arduino começa a se comunicar com o computador
Serial.begin(9600);//9600 velocidade
x = 10;
y = 20;
z = 50;
soma = x + y + z;
Serial.print("Valor de x = ");
Serial.print(x);
Serial.print("\nValor de y = ");
Serial.print(y);
Serial.print("\nValor de z = ");
Serial.print(z);
Serial.print("\nSoma = ");
Serial.print(soma);
}
void loop() {
// put your main code here, to run repeatedly:
}
Créditos para https://cursodearduino.net/
Nenhum comentário:
Postar um comentário