react-native-lanscan
react-native-lanscan copied to clipboard
TypeError: Cannot read property 'scan' of undefined
I'm using this code ,and i recive this mensage => TypeError: Cannot read property 'scan' of undefined
what can a do??
import { LANScan } from 'react-native-lanscan'; let lanscan = new LANScan();
lanscan.on('end_pings', () => { let connected_hosts = lanscan.getConnectedHosts(); console.log(connected_hosts); // connected_hosts = ["192.168.1.10", "192.168.1.15"] // if 192.168.1.10 & 192.168.1.15 responded to the pings. }); lanscan.scan(48500, 48503, 100, true, 20, 100);