mirror of
https://github.com/meshcore-dev/meshcore_py.git
synced 2026-04-20 22:13:49 +00:00
implemented anon binary requests
This commit is contained in:
parent
ac82eeb905
commit
3b46986dfa
5 changed files with 137 additions and 3 deletions
|
|
@ -1,5 +1,10 @@
|
|||
from enum import Enum
|
||||
|
||||
class AnonReqType(Enum):
|
||||
REGIONS = 0x01
|
||||
OWNER = 0x02
|
||||
BASIC = 0x03 # just remote clock
|
||||
|
||||
class BinaryReqType(Enum):
|
||||
STATUS = 0x01
|
||||
KEEP_ALIVE = 0x02
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue