-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I spend alot of time then no success with plugin #103
Comments
Hi! There is an example app over here, and I see you have found this thread that contains some examples. It should be possible to find the MDNS broadcast data from a NodeMCU device, and I suspect you might be having trouble searching for a particular type and domain. Are you able to find your NodeMCU device inside an MDNS search app like Discovery? If the zeroconf plugin app is searching for If you would like more help, please share you code for both your Cordova app and your NodeMCU device. |
@emcniece |
The watch method in the README is close, it can be adapted like so: zeroconf.watch('echo.', 'local.', function(result) {
var action = result.action;
var service = result.service;
if (action == 'resolved') {
console.log('service resolved', service);
ipAddress = service.ipv4Addresses[0];
console.log('my IP address:', ipAddress);
}
}); I'm not completely sure this will find your service though. What is the full mdns hostname that your NodeMCU device is broadcasting as? It should be something like |
@emcniece |
I am using nodemcu as mdns server name as: echo
is there any example code to let your plugin to get ip address of nodemcu?
The text was updated successfully, but these errors were encountered: