LoRaMesher Library  0.0.5
A LoRa Mesh library for the IoT
QueuePacket.h
1#ifndef _LORAMESHER_QUEUE_PACKET_H
2#define _LORAMESHER_QUEUE_PACKET_H
3
4#include <Arduino.h>
5
6template <typename T>
7class QueuePacket {
8public:
9 uint16_t number = 0;
10 uint8_t priority = 0;
11 T* packet;
12};
13
14#endif