bta-proxy/bta_proxy/packets/packet73weatherstatus.py

13 lines
261 B
Python
Raw Normal View History

2023-08-24 15:29:57 +03:00
from .base import Packet
2023-08-24 17:40:23 +03:00
class Packet73WeatherStatus(Packet, packet_id=73):
2023-08-24 15:29:57 +03:00
FIELDS = [
('dim', 'int'),
('id', 'int'),
('new_id', 'id'),
('duration', 'long'),
('intensity', 'float'),
('power', 'float')
]