mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-23 05:46:09 +02:00
* added HM1200 decoder
* added HTML to visualize the read values
This commit is contained in:
parent
a7add69719
commit
8bfbd8d45b
12 changed files with 232 additions and 16 deletions
|
@ -9,6 +9,7 @@
|
|||
|
||||
#include "CircularBuffer.h"
|
||||
#include "hoymiles.h"
|
||||
#include "hm1200Decode.h"
|
||||
|
||||
|
||||
class app : public Main {
|
||||
|
@ -30,6 +31,8 @@ class app : public Main {
|
|||
void showSetup(void);
|
||||
void showSave(void);
|
||||
void showCmdStatistics(void);
|
||||
void showHoymiles(void);
|
||||
void showLiveData(void);
|
||||
|
||||
void saveValues(bool webSend);
|
||||
void dumpBuf(uint8_t buf[], uint8_t len);
|
||||
|
@ -39,6 +42,7 @@ class app : public Main {
|
|||
|
||||
RF24 *mRadio;
|
||||
hoymiles *mHoymiles;
|
||||
hm1200Decode *mDecoder;
|
||||
CircularBuffer<NRF24_packet_t> *mBufCtrl;
|
||||
NRF24_packet_t mBuffer[PACKET_BUFFER_SIZE];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue