Skip to content

Commit d2ea2d4

Browse files
authored
Create BeaconGuard.h
1 parent c9a9e72 commit d2ea2d4

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/guardian/BeaconGuard.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)