modbus_master 2.1.2
modbus_master: ^2.1.2 copied to clipboard
An easy to use package using which a dart program can work as a Modbus/TCP master device.
1.0.0 #
- Initial version.
2.0.0 #
- Simplified read and write method:- Now only two methods are provided for reading and writing (i.e. read and write) as opposed to 6 methods previously.
- Intuitive method names for object creation. "start" method creates object & initializes all resouces. "stop" method shuts down all resources & disconnects all TCP connections.
- Asynchronous
isStoppedAsyncmethod to check whether object is stopped. - Bug fixes.
2.0.1 #
- Updated README.md file
- Provided docstrings
- updated modbus_slave.py file
2.1.0 #
- Updated README.md file
- Added two more fields
isReadResponseandisWriteResponsein classSlaveResponseConnectionErroras well as classSlaveResponseTimeoutError
2.1.1 #
- Bug fixes:- In case of Error Response, field
isReadResponse/isWriteResponseistrueandreadValue/writeValueis null of object of classSlaveResponseDataReceivedis true.
2.1.2 #
- Bug fixes:-
- Inside Worker Isolate :- When
UserRequestShutdownis received in worker isolate, then all sockets are now closed usingawait socket.close()instead ofsocket.destroy(). - Inside Main Isolate:- When
SlaveResponseShutdownCompleteis received in main isolate, then receive port of main isolate is also closed.
- Inside Worker Isolate :- When