Play Button in IOs App is doing nothing

Hi,
I installed the Blynk server on a Pi 2. Now I am unable to download the Widget-Settings to the Arduino via the play Button.

At the Server installation I had to manually download the blynk-ser.sh script (couldnt find it anyware). After that i changed the SSL-Connection in the script do TCP.

#!/bin/bash
# Detect script path
pushd `dirname $0` > /dev/null
SCRIPTPATH=`pwd`
popd > /dev/null

# === Edit default options to match your need ===

FROM_TYPE="SER" # SER, TCP
TO_TYPE="TCP"   # TCP, SSL

COMM_BAUD=9600
SERV_ADDR=192.168.2.108
SERV_PORT_SSL=8441
SERV_PORT_TCP=8442
SERV_PORT_2WAY=8443
LSTN_PORT=8442

The Connection seems to be okay, even the debug lines of the Arduino shows [5075] Ready (ping: 50ms).

Connecting: FILE:/dev/ttyUSB0,raw,echo=0,clocal=1,cs8,nonblock=1,b9600 <-> TCP:192.168.2.108:elay
2017/02/19 12:47:36 socat[4656] N opening character device "/dev/ttyUSB0" for reading and wri
2017/02/19 12:47:36 socat[4656] N opening connection to AF=2 192.168.2.108:8442
2017/02/19 12:47:36 socat[4656] N successfully connected from local address AF=2 192.168.2.10
2017/02/19 12:47:36 socat[4656] N starting data transfer loop with FDs [5,5] and [6,6]

But in the App, there is nothing happening when i press the play button to deploy a test Button.

Were could be my Fault?

Hi. Have you specified IP of server in app?

Yes I did. Only to try something.

I got it!!
I dont know, why it didnt work at the beginning, but after i changed the TCP back to SSL, it worked after a reboot.

Exited to get more things working :slight_smile: