hzeller / flaschen-taschen

Noisebridge Flaschen Taschen display
GNU General Public License v3.0
195 stars 49 forks source link

clients on other OS ? #52

Open guyverckw opened 4 years ago

guyverckw commented 4 years ago

Hi, I just tried sending images and videos from my Raspberry Pi to the LED panel. I wonder if there is other clients that run on other OS platform that I can make use of? Like Windows, even iOS or Android? Thanks in advance.

hzeller commented 4 years ago

It is just uses UDP packets, which is the simplest network interface that is supported by all operating systems. I have seen people writing clients in Java or Python (Python library is included with this repository) or even JavaScript.

The C++ code uses a sufficiently small subset of operating system functionality that it should be possible to compile on any OS as well.

guyverckw commented 4 years ago

Can you point me to the link of Python implementation? Thanks a lot.

hzeller commented 4 years ago

Python API is here: https://github.com/hzeller/flaschen-taschen/tree/master/api/python

guyverckw commented 4 years ago

Thanks a lot!