// // FILE: simpleHeartBeat.ino // AUTHOR: Rob Tillaart // PURPOSE: demo #include "HeartBeat.h" HeartBeat HB; void setup() { Serial.begin(115200); Serial.println(__FILE__); Serial.println(HEARTBEAT_LIB_VERSION); HB.begin(13, 3); // PIN 13 with frequency 3 } void loop() { HB.beat(); // do other stuff here } // -- END OF FILE --