54 lines
724 B
Arduino
Raw Normal View History

2020-11-27 11:33:55 +01:00
//
// FILE: heatindex_table.ino
// AUTHOR: Rob Tillaart
// PURPOSE: demo
// DATE: 2020-04-04
2021-01-29 12:31:58 +01:00
2020-11-27 11:33:55 +01:00
#include "temperature.h"
2021-01-29 12:31:58 +01:00
2020-11-27 11:33:55 +01:00
volatile float hi;
2021-12-28 19:11:26 +01:00
2020-11-27 11:33:55 +01:00
void setup()
{
Serial.begin(115200);
Serial.println(__FILE__);
Serial.println();
for (int t = 80; t <= 110; t += 2)
{
Serial.print("\t");
Serial.print(t);
}
Serial.println();
Serial.println();
for (int hum = 40; hum <= 100; hum += 5)
{
Serial.print(hum);
for (int t = 80; t <= 110; t += 2)
{
float hi = heatIndex(t, hum);
Serial.print("\t");
Serial.print(round(hi));
}
Serial.println();
}
Serial.println();
Serial.println();
Serial.print("Done...");
}
2021-12-28 19:11:26 +01:00
2020-11-27 11:33:55 +01:00
void loop()
{
}
2021-12-28 19:11:26 +01:00
2020-11-27 11:33:55 +01:00
// -- END OF FILE --
2021-12-28 19:11:26 +01:00