changed ehealth temperature to float output
This commit is contained in:
parent
1b99af1219
commit
065006acdb
|
@ -59,14 +59,14 @@ float getTemperature(void)
|
|||
|
||||
void loop() {
|
||||
zaehler++;
|
||||
int airFlow = analogRead(A1);
|
||||
int emg = analogRead(0);
|
||||
int temp = getTemperature();
|
||||
Serial.print(airFlow);
|
||||
// int airFlow = analogRead(A1);
|
||||
// int emg = analogRead(0);
|
||||
// int temp = getTemperature();
|
||||
Serial.print(analogRead(A1));
|
||||
Serial.print(";");
|
||||
Serial.print(emg);
|
||||
Serial.print(analogRead(0));
|
||||
Serial.print(";");
|
||||
Serial.println(temp);
|
||||
Serial.println(getTemperature());
|
||||
delay(100);
|
||||
|
||||
if(zaehler >= 10) {
|
||||
|
|
Loading…
Reference in New Issue