GY-63_MS5611/libraries/HeartBeat/examples/arrayHeartBeat/arrayHeartBeat.ino

35 lines
437 B
Arduino
Raw Normal View History

2021-01-29 06:31:58 -05:00
//
// FILE: arrayHeartBeat.ino
// AUTHOR: Rob Tillaart
// PURPOSE: demo
#include "HeartBeat.h"
HeartBeat HB[3];
void setup()
{
Serial.begin(115200);
Serial.println(__FILE__);
Serial.println(HEARTBEAT_LIB_VERSION);
HB[0].begin(11, 1);
HB[1].begin(12, 3);
HB[2].begin(13, 5);
}
void loop()
{
// update all heartbeats
for (int i = 0; i < 3; i++) HB[i].beat();
// do other stuff here
}
2021-05-28 07:30:27 -04:00
// -- END OF FILE --