ESP32-PaxCounter/include/beacon_array.h

9 lines
235 B
C
Raw Normal View History

2018-07-31 00:00:24 +02:00
#ifndef _BEACON_ARRAY_H
#define _BEACON_ARRAY_H
2018-07-31 09:21:10 +02:00
std::array<uint64_t, 0xff>::iterator it;
2018-07-31 00:00:24 +02:00
2018-08-01 12:50:23 +02:00
std::array<uint64_t, 0xff> beacons = {0x0000010203040506, 0x0000aabbccddeeff,
0x0000112233445566};
2018-07-31 00:00:24 +02:00
#endif