I created a local blynk server in Windows 7 using the jar file. Initially I was running node js script in rpi to connect to Cloud server. Now i cant find the way to connect the same script to local server. In docs section its written that we need to enter the local ip of server beside AUTH.
Initial code to connect cloud
var blynk = new Blynk.Blynk(AUTH, options = {connector : new Blynk.TcpClient()}); [WORKED FINE]
I tried this:
var blynk = new Blynk.Blynk(AUTH, β192.168.0.101β); //where 192.168.0.101= local server IP.
But it is still trying to connect to cloud server.
Can somebody tell me what is the syntax to connect it to local server.