diff --git a/src/device/autoDetect/DeviceScannedComponents.tsx b/src/device/autoDetect/DeviceScannedComponents.tsx index 6899959..5e91dd0 100644 --- a/src/device/autoDetect/DeviceScannedComponents.tsx +++ b/src/device/autoDetect/DeviceScannedComponents.tsx @@ -67,10 +67,11 @@ export default function DeviceScannedComponents(props: Props){ //filter the address data scannedI2C?.settings?.foundAddresses.forEach(addrData => { if(!i2cBlacklistAddresses.includes(addrData.address)){ - valid.push(addrData) + if(!(addrData.address === 0x71 && addrData.expansionLine === undefined)){ + valid.push(addrData) + } } }) - console.log(valid) setValidComponentAddresses(valid) },[scannedI2C])