Hi,
I need to add in a vector<TimedCommand> tCommands;
access references for TimedCommand instances, eg:
TimedCommand command1("*.*.*.*.*.*",&sonCommand,"13");
(...)
tCommands.push_back(&command1);
Unfortunately, when I do this happens a no matching function for call to 'std::vector<TimedCommand', std::allocator<TimedCommand>>:: push_back(TimedCommand*)
I'm using the Standard C ++ for Arduino lib and Arduino Cron Library . What am I doing wrong?