|
|
|
|
|
by rdtsc
4174 days ago
|
|
Look at the link to the talk about this project I posted above. Frank used Cowboy (Erlang web server). It was in used in 3 ways -- serving static files, websockets (you can use that for signaling) and streaming binary data (video) using Motion JPEG. Other projects might use MQTT -- a messaging system built for smaller devices (instead of say AMQP). RabbitMQ has a driver for it: http://www.rabbitmq.com/blog/2012/09/12/mqtt-adapter/ But if you can get any server that supports websockets and have websocket clients in your client code (if you don't use a browser). Then you can roll your own messages using JSON or even binary. |
|
Also one big unknown to me is updating the devices. I skimmed the nerves website and the slides from the talk and it looks like the only way is to write directly to the device SD card, there's no over-the-air updates?