mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-12 09:36:59 +00:00
24 lines
378 B
C++
24 lines
378 B
C++
/*
|
|
* Author: Klusjesman, modified bij supersjimmie for Arduino/ESP8266
|
|
*/
|
|
|
|
#ifndef CC1101PACKET_H_
|
|
#define CC1101PACKET_H_
|
|
|
|
#include <stdio.h>
|
|
#include <Arduino.h>
|
|
|
|
#define CC1101_BUFFER_LEN 64
|
|
#define CC1101_DATA_LEN CC1101_BUFFER_LEN - 3
|
|
|
|
|
|
class CC1101Packet {
|
|
public:
|
|
|
|
uint8_t length = 0;
|
|
uint8_t data[128] = { 0 };
|
|
};
|
|
|
|
|
|
#endif /* CC1101PACKET_H_ */
|