Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- float gramas = 435.1;
- float units = 0;
- // --------------------------
- void setup()
- {
- // Teste com 2610,65 / 6 = 435,11 entra no loop
- // com 2610.55 / 6 = 435.09 Não entra no loop
- units =float(2610.65) / float(6);
- Serial.begin(9600);
- Serial.println(units,2);
- }
- // --------------------------
- void loop()
- {
- if (units >= gramas)
- Serial.println("Entrou no if");
- else
- Serial.println("Não entrou no if");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement