How do remote Spark Cores communicate with each other?

What’s the easiest way for my different Spark cores to communicate with each other remotely?

It looks for me that I need to build up my own server for Spark Cores to communicate, is there any easier way?

Thanks!

This should pretty much answer your question: http://docs.spark.io/firmware/#spark-subscribe
And this is a nice starting project for using the above: http://www.hackster.io/maxeust/quantumly-entangled-leds1

3 Likes

As @Moors7 said above you have each core send out messages using Spark.publish() and listen for said messages using Spark.subscribe()