16 lines
310 B
Python
16 lines
310 B
Python
|
|
||
|
from typing import ClassVar
|
||
|
from .base import Packet
|
||
|
|
||
|
class Packet73WeatherStatus(Packet):
|
||
|
PACKET_ID: ClassVar[int] = 50
|
||
|
|
||
|
FIELDS = [
|
||
|
('dim', 'int'),
|
||
|
('id', 'int'),
|
||
|
('new_id', 'id'),
|
||
|
('duration', 'long'),
|
||
|
('intensity', 'float'),
|
||
|
('power', 'float')
|
||
|
]
|