Today I switched from Cloud to Local Server on my Raspberry 2.
-> Server started successfully.
->Made a new .js file.
->Only added var Blynk = require('blynk-library'); var AUTH = '76b78e5ea0604d7f82d8c19cc45d017c'; var exec = require('child_process').exec, child; var blynk = new Blynk.Blynk(AUTH, options= {addr:"192.168.0.30"});
->Started the script with node test.js
and the Result is: Connecting to SSL: 192.168.0.30 8441 Error undefined
Edit:
Ok I got it working.
I just connect via TCP to my locally running server. var blynk = new Blynk.Blynk(AUTH, options = { connector : new Blynk.TcpClient( options = { addr:"127.0.0.1", port:8442 } ) });