mirror of
https://github.com/colonelpanichacks/flock-you.git
synced 2026-07-24 23:48:10 -07:00
24 lines
804 B
C
24 lines
804 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef USE_T_DONGLE_DISPLAY
|
|
|
|
void dongleDisplayInit();
|
|
void dongleDisplayShowIdle(uint8_t ch, int detCount);
|
|
void dongleDisplayShowAlert(const char* method, const char* mac, int8_t rssi,
|
|
uint8_t ch, unsigned long alertMs);
|
|
void dongleDisplayTick(unsigned long now, uint8_t ch, int detCount);
|
|
bool dongleDisplayInAlert(unsigned long now);
|
|
|
|
#else
|
|
|
|
static inline void dongleDisplayInit() {}
|
|
static inline void dongleDisplayShowIdle(uint8_t, int) {}
|
|
static inline void dongleDisplayShowAlert(const char*, const char*, int8_t, uint8_t,
|
|
unsigned long) {}
|
|
static inline void dongleDisplayTick(unsigned long, uint8_t, int) {}
|
|
static inline bool dongleDisplayInAlert(unsigned long) { return false; }
|
|
|
|
#endif
|