Thanks for putting together the tutorial. There's a small typo in your code for app_controller.cpp :
// we tell it which function to call when it fires
timer.setCallack<AppController>(this, &AppController::outputSomething);
Should be:
// we tell it which function to call when it fires
timer.setCallback<AppController>(this, &AppController::outputSomething);
K
kevinaltomare
@kevinaltomare
1
Reputation
1
Posts
321
Profile views
0
Followers
0
Following
Posts made by kevinaltomare
-
RE: The Serial Port