Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/blame/commit/ed083693054ef20fe0ad9681e7f0e68fa8bbf19f/third-party/TeensyTimerTool/examples/02_Advanced/UsingLambdas/UsingLambdas.ino You should set ROOT_URL correctly, otherwise the web may not work correctly.

22 lines
278 B

#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);
}