Github
Github Wiki
Project Page
Firmware for an ad-hoc mesh network of Internet-of-Things devices based on LoRa (Long Range radio) that can be deployed quickly and cheaply.
DuckTypes.h
Go to the documentation of this file.
1
#ifndef DUCKTYPES_H
2
#define DUCKTYPES_H
3
8
enum
DuckType
{
10
UNKNOWN
= 0x00,
12
PAPA
= 0x01,
14
MAMA
= 0x02,
16
LINK
= 0x03,
18
DETECTOR
= 0x04,
19
MAX_TYPE
20
};
21
22
#endif
DETECTOR
@ DETECTOR
A Detector Duck.
Definition:
DuckTypes.h:18
MAX_TYPE
@ MAX_TYPE
Definition:
DuckTypes.h:19
LINK
@ LINK
A DuckLink.
Definition:
DuckTypes.h:16
UNKNOWN
@ UNKNOWN
A Duck of unknown type.
Definition:
DuckTypes.h:10
MAMA
@ MAMA
A MamaDuck.
Definition:
DuckTypes.h:14
DuckType
DuckType
Type of ducks.
Definition:
DuckTypes.h:8
PAPA
@ PAPA
A PapaDuck.
Definition:
DuckTypes.h:12
src
include
DuckTypes.h
Wiki
GitHub
Project Page