mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-11 16:06:38 +02:00
Merge pull request #76 from stefan123t/main
Raspberry Pi pyRF24 build instructions from mslookup
This commit is contained in:
commit
425ffdfc58
11 changed files with 199 additions and 77 deletions
|
@ -16,6 +16,12 @@
|
|||
#include "hmSystem.h"
|
||||
#include "mqtt.h"
|
||||
|
||||
#ifdef DEBUG_APP
|
||||
#define DBGAPP(f,...) do { Serial.printf(PSTR(f), ##__VA_ARGS__); } while (0)
|
||||
#else
|
||||
#define DBGAPP(x...) do { (void)0; } while (0)
|
||||
#endif
|
||||
|
||||
typedef CircularBuffer<packet_t, PACKET_BUFFER_SIZE> BufferType;
|
||||
typedef HmRadio<RF24_CE_PIN, RF24_CS_PIN, RF24_IRQ_PIN, BufferType> RadioType;
|
||||
typedef Inverter<float> InverterType;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue