Hi,
You can use the TML/SIDEX SDK to setup a server on a Raspberry_Pi. It
enables peer to peer communcation beased on the Blocks Extensible
Exchange protocol. The Python interface is easy to use and you can find
tutorial videos on youtube, how to install it on a raspberry_py.
Search for "How
On 27/12/14 10:56, pfranke...@gmail.com wrote:
> What kind of protocol do you recommend for this? UDP or TCP? Do you recommend
> the use of frameworks such as twisted?
Take a look at CoAP[1], an open IETF protocol for IoT.
You can make your hardware accessible through "resources", it's restful.
S
Hi,
On 12/29/14 10:18, pfranke...@gmail.com wrote:
> Hello Steven!
>
> Thank you for your answer!
>
> RPyC indeed looks great! I need to deep dive into the API reference, but I
> think its capabilities will suffice to do what I want. Do you know whether
> non-python related clients can work wit
On 2014-12-29 00:34, pfranke...@gmail.com wrote:
> Am Samstag, 27. Dezember 2014 14:19:21 UTC+1 schrieb Tim Chase:
> > - do clients need to know if they missed a message? (somebody
> > disconnected from the LAN for a moment)
>
> This would be nice indeed. At least, the user should be notified
>
Hello Tim,
Am Samstag, 27. Dezember 2014 14:19:21 UTC+1 schrieb Tim Chase:
> The eventual solution would depend on a variety of factors:
>
> - how critical is synchronization?
>
> - do clients need to know if they missed a message? (somebody
> disconnected from the LAN for a moment)
This woul
Hello Steven!
Thank you for your answer!
RPyC indeed looks great! I need to deep dive into the API reference, but I
think its capabilities will suffice to do what I want. Do you know whether
non-python related clients can work with this as well, i.e. are their
corresponding tools on the androi
On 2014-12-27 01:56, pfranke...@gmail.com wrote:
> I am just about setting up a project with an Raspberry Pi that is
> connected to some hardware via its GPIO pins. Reading the data
> already works perfectly but now I want to distribute it to clients
> running in the network. Hence, I have to setup
pfranke...@gmail.com wrote:
> What kind of protocol do you recommend for this? UDP or TCP? Do you
> recommend the use of frameworks such as twisted?
I don't recommend something as low-level as inventing your own protocol, or
as heavy-weight as Twisted.
Have you considered a remote-procedure call
Hello!
I am just about setting up a project with an Raspberry Pi that is connected to
some hardware via its GPIO pins. Reading the data already works perfectly but
now I want to distribute it to clients running in the network. Hence, I have to
setup a server in Python.
I do not want to reinven