feat: redesign and lots of progress
This commit is contained in:
@ -22,6 +22,10 @@ bool isConnectableAbawoDeviceGuid(Uuid guid) {
|
||||
return isAbawoUniversalShiftersDeviceGuid(guid);
|
||||
}
|
||||
|
||||
bool hasConnectableAbawoDeviceGuid(List<Uuid> guid) => guid
|
||||
.map((id) => isConnectableAbawoDeviceGuid(id))
|
||||
.fold(false, (v, e) => v || e);
|
||||
|
||||
bool isAbawoDeviceIdent(List<int> manuData) {
|
||||
if (manuData.length < abawoManuIdentData.length) return false;
|
||||
for (int i = 0; i < abawoManuIdentData.length; i++) {
|
||||
|
||||
Reference in New Issue
Block a user