You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried taking a few baby steps, but so far completely without success. In a new handler I added some logging:
@OverridepublicvoidonScanRecordReceived(BluetoothScanNotificationscanNotification) {
super.onScanRecordReceived(scanNotification);
byte[] manufacturerData = scanNotification.getManufacturerData();
logger.trace("onScanRecordReceived manufacturer data length: {}", manufacturerData.length);
byte[] data = scanNotification.getData();
logger.trace("onScanRecordReceived data length: {}", data.length);
}
I get only empty byte arrays. Same when deriving from ConnectedBluetoothHandler rather than BeaconBluetoothHandler. It seems Alpha3 is a bit different than the Alpha Reader and requires more logic to be implemented.
As discussed in #15907 extending support for Grundfos Alpha3 seems doable. See #15907 (comment).
This issue is created to keep track of resources, discussions and progress towards implementing this support.
Other projects having an implementation:
The text was updated successfully, but these errors were encountered: