Hi guys,
I have set up a local server on a Windows PC and start Blynk on the Raspberry Pi with blynk.js "authToken"
.
I have changed the IP in blynk-node.js
.(only one change)
It looks like that now:
…
xports.SslClient = function(options) {
var self = this;
events.EventEmitter.call(this);
var options = options || {};
var certs_path = options.certs_path || default_certs_path;
self.addr = options.addr || "192.168.178.26";
self.port = options.port || 8441;
// These are necessary only if using the client certificate authentication
self.key = options.key || null;
self.cert = options.cert || null;
self.pass = options.pass || null;
// This is necessary only if the server uses the self-signed certificate
self.ca = options.ca || [ path.join(certs_path, 'server.crt') ];
…
When I run blynk.js
it gives me this output:
OnOff mode Connecting to: 192.168.178.26 8441 SSL authorization... SSL not authorized...
and the blynk.log
on the server doesn’t change.
Have I written my local IP in the right place or do I have to edit other scripts too?
Any Ideas how to fix this problem?
Thanks!
BTW: Blynk is awesome!!