Farhad Zamani

Results 4 comments of Farhad Zamani

![image](https://user-images.githubusercontent.com/39480944/97284280-7220f400-1873-11eb-8300-bca21ae23713.png) Regards, Farhad

I think I found the problem. In my project, the `isConnected()` method is not contained in `NeuroSky.java` file but in `Preconditions.java` (both files are downloaded via Gradle). ![image](https://user-images.githubusercontent.com/39480944/97290796-a1d3fa00-187b-11eb-8e27-4ff8d632dce7.png) Perhaps I...

Or maybe I can skip that `isConnected()` part since it already exist in `startMonitoring()` and `stopMonitoring()` method? > public void startMonitoring() { if (Preconditions.isConnected(device)) { device.start(); }} > public void...

There is no `isConnected()` method in `NeuroSky.java`. There is also no `Preconditions` object in that java file. Is it really like this? Because the library I've downloaded via Gradle is...