modbus_protocal 0.1.0
modbus_protocal: ^0.1.0 copied to clipboard
A new Flutter package project.
example/main.dart
import '../lib/modbus_protocal.dart';
void main() {
testModbusProtocol();
}
void testModbusProtocol() {
final bytes = [1, 2, 3, 4, 5, 6, 7, 0xff, 0xa1, 0xdd];
final modbus = ModbusProtocol(bytes);
final crc = modbus.crc;
print(crc.word);
}