#include "Timer.h"
Timer t;
int pin = 13;
void setup()
{
Serial.begin(9600);
pinMode(pin, OUTPUT);
t.oscillate(pin, 100, LOW);
t.every(1000, takeReading)
}
void loop()
{
t.update();
}
void takeReading(void* context)
{
Serial.println(analogRead(0));
}
there is an error (no matching function for call to 'Timer::every(int, void (&)(void*))')
help