mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-07-12 22:59:00 +00:00
GreenPower devices don't support a network scan. #3322
This commit is contained in:
@@ -119,7 +119,7 @@ class NetworkMap extends BaseExtension {
|
||||
|
||||
async networkScan(includeRoutes) {
|
||||
logger.info(`Starting network scan (includeRoutes '${includeRoutes}')`);
|
||||
const devices = this.zigbee.getDevices();
|
||||
const devices = this.zigbee.getDevices().filter((d) => d.type !== 'GreenPower');
|
||||
const lqis = new Map();
|
||||
const routingTables = new Map();
|
||||
const failed = new Map();
|
||||
|
||||
Reference in New Issue
Block a user