Hi there.
I'm getting familiar to Arduino Yun and many internet based services, but one thing makes me feel puzzled.
I have a led matrix connected to Arduino Yun fully working. It shows icons getting the information in this format:
byte parasol[8]={B00000100,B00000110,B00000110,B01111111,B10000111,B01000110,B00000110,B00000100};
or this
byte sun[8]={0x14,0x14,0xfc,0x27,0xe4,0x3f,0x28,0x28};
than on the other side i want to use Processing.js to create a simple interface to create 8x8 images by touching on dots, and than sending this information to Arduino. This script will be on my online server.
What to choose to make them talk to each other?
Rest Api - this is to my knowladge only local (due to firewall), and has no ability to set port listening to anything different than the default ones.
Temboo - great service, but than I would need the script to be posting to some service (eg. Dropbox) and than make the temboo to read this text file.
BTW - checked the spacebrew and this looks great but only the public thing. There is a possibility to make a private server of this kind, but ... this has to be an overkill, true?
I strongly feel I'm trying to reinvent the wheel here.
I should also say that my internet provider forwarded for me ports in a range 4000-4005 and my router doesn't allow me to translate ports, so (I think) I'm stuck to services on the side of Yun that are either inteligent as Temboo or allow to specify the port they work on.
What is the simplest way to make a processing.js script located on an online hosting server, talk to the Arduino Yun in my home? Thank you for any clues.