cabbi
cabbi
I'm pretty new to dart & flutter, and I was surprised to see how easy it is to develop mobile apps with it. Then I moved forward with my experience...
I did a new package that handles both ASCII and RTU serial connection. Feel free to take a look at https://pub.dev/packages/modbus_client
I did a new package that handles register groups. Feel free to take a look at https://pub.dev/packages/modbus_client
This is the example of reading multiple registers by using a group: ```dart import 'package:modbus_client/modbus_client.dart'; import 'package:modbus_client_tcp/modbus_client_tcp.dart'; enum BatteryStatus implements ModbusIntEnum { offline(0), standby(1), running(2), fault(3), sleepMode(4); const BatteryStatus(this.intValue); @override...