With due respect, it would be helpful if someone suggest possible solution to this problem.
I downloaded the OpenBCI_Python files and opened the wifi.py in Pycharm IDE and run the file.
The result of file interpreting had no errors. Thus I decided to connect the OpenBCI board through Wifi from another python module in the IDE by calling the class function with manual IP '192.168.4.1' as argument.
Code:
import wifi
my_wifi = OpenBCIWiFi(sample_rate=500,ip_address='192.168.4.1')
Result:
It opened port, then initialized wifi connection with IP, Sample rate got Success. TCP connection Success and then suddenly it shows stop streaming.
What could be wrong ? Please suggest.