Skip to content

Instantly share code, notes, and snippets.

View jenishah's full-sized avatar

jeni Shah jenishah

View GitHub Profile
@jenishah
jenishah / AllTimer.h
Created March 31, 2015 18:43
Timer library for arduino that uses timer ISR
#ifndef AllTimer_h
#define AllTimer_h
typedef void(*dofun)(); //to be used when functions are to be called after each timer runs out.
class AllTimer{
public:
AllTimer();