We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9a9e72 commit d2ea2d4Copy full SHA for d2ea2d4
1 file changed
src/guardian/BeaconGuard.h
@@ -0,0 +1,11 @@
1
+#pragma once
2
+#include <cstdint>
3
+
4
+// Minimalny interfejs – wołasz Start() raz, potem Update() co jakiś czas.
5
+namespace Guardian {
6
+class BeaconGuard {
7
+public:
8
+ static void Start();
9
+ static void Update(uint8_t hr, uint8_t batt);
10
+};
11
+} // namespace Guardian
0 commit comments