Status on Spark Core library

@itayd100, @tyler785, @peekay123
Current Spark library is published (should be listed in the libraries section), the source can be found here.
While it is working, we saw some problems when Spark is connected to both Blynk and Spark clouds.

I didn’t find any way around it yet, but it was performing better when I placed a switch button (pin V10) to control Spark Cloud connection:

BLYNK_WRITE(10) {
    if (param.asInt()) {
        Spark.connect();
    } else {
        Spark.disconnect();
    }
}

Using this button I enable Spark Cloud only when I need it. :smile:
Also, the built-in RGB led shows the status of Spark Cloud!

Note that we didn’t do any close integration with Spark team yet, the library is “our own attempt” to support this device.
Hope this helps!

Upd: just updated it to v0.2.1

4 Likes