Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/src/commit/f98a3b64d8e7de4fee7c5fefdd03f0ee44c41b2a/third-party/TeensyTimerTool/examples/02_Advanced/UsingLambdas/UsingLambdas.ino
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
#include "TeensyTimerTool.h"
|
|
#include "pins.h"
|
|
|
|
using namespace TeensyTimerTool;
|
|
using namespace pins;
|
|
|
|
pin<13> LED(OUTPUT);
|
|
Timer timer;
|
|
|
|
void setup()
|
|
{
|
|
timer.beginOneShot([] { LED = LOW; });
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
LED = HIGH;
|
|
timer.trigger(25'000);
|
|
delay(1'000);
|
|
}
|
|
|