added tone request gateway before actually swithcing the pin

This commit is contained in:
Flo
2025-12-08 19:24:47 +01:00
commit f0e8b49854
68 changed files with 11057 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
/*
* Seconds.h
*
* Created on: 10.09.2020
* Author: flori
*/
#ifndef SECONDS_H_
#define SECONDS_H_
#include "Arduino.h"
class Seconds
{
public:
static uint32_t Get();
private:
static uint32_t lastMillisShifted;
static uint32_t seconds;
static uint32_t secondsOverflow;
static volatile boolean semaphore;
};
#endif /* SECONDS_H_ */