You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
414 B
Python

2 years ago
import json
import collections
import time
from protocol.ModBus.TCPMaster import TcpMaster
2 years ago
from utils.DBModels.DeviceModels import DeviceDB
2 years ago
# from utils.DBModels.ClientModels import DeviceDB
2 years ago
2 years ago
2 years ago
class Area():
2 years ago
startAddress = None
2 years ago
endAddress = None
bytes = None
2 years ago
type = None
addressList = []
2 years ago
order = 'ABCD'
2 years ago
nums = None
forceValue = 0
2 years ago
def __init__(self):
2 years ago
pass
2 years ago
2 years ago
2 years ago