MyPi

Enthält Werbung
3,0
55 Rezensionen
5000+
Downloads
Altersfreigabe
Jedes Alter
Screenshot
Screenshot
Screenshot

Über diese App

Steuern Sie Ihren Raspberry Pi GPIO mit jedem Android- oder iOS-Gerät:
Steuern Sie 8 Ausgangspins über die App oder über 8 physische Tasten, die mit den Eingangspins verbunden sind.

Ideal für kleine Hausautomationsprojekte mit Raspberry Pi:

* Anweisungen finden Sie auf der Hilfeseite.

Laden Sie das MyPi TCP-Serverskript herunter von:
http://www.ioslinks.com/mypi/mypi.zip

Installations- und Bedienungsanleitung:
http://www.ioslinks.com/mypi/help.html
Aktualisiert am
19.08.2020

Datensicherheit

Entwickler können hier darüber informieren, wie ihre App deine Daten erhebt und verwendet. Weitere Informationen zur Datensicherheit
Keine Informationen verfügbar

Bewertungen und Rezensionen

3,2
53 Rezensionen
Xy Das Fu
11. September 2020
Die App Ansicht wäre gut,leider verschieben sich seit dem letzten Update die icons
War das hilfreich für dich?
Ein Google-Nutzer
29. Oktober 2017
I reverse-engineered the protocol used by the App. Turns out, the author makes assumptions about TCP connections that should never be made. Simply put, the author assumes that if the App writes a chunk of X bytes 3 times, then the next 3 read operations on the server side will each return a chunk of X bytes. That, in general, is false. Let's talk about an example. Say you press Buttons 1 to 3. The App will send the following data: "update 1update 2update 3". Note, that each of the update commands is not terminated by a linefeed character. The server will usually receive the data in 3 chunks, namely "update1", "update 2", and "update 3". However, when packet loss occurs, then the TCP/IP stack on your Smartphone will "merge" the 2nd and 3rd command (due to Nagle's algorithm) and the server actually receives only 2 chunks, namely "update 1" and "update 2update 3". The second chunk will not be interpreted correctly by the server. There is a reason, why in SMTP, for example, every command is terminated by linefeed character. The protocol of this app needs to be reworked, e.g. by terminating each command with a linefeed.
4 Personen fanden diese Bewertung hilfreich
War das hilfreich für dich?
Ein Google-Nutzer
5. April 2017
ich habe eine frage kanst du dei app auch auf 16 Relay machen ?
1 Person fand diese Bewertung hilfreich
War das hilfreich für dich?

Neuigkeiten

Bug fixes and general improvements.
Supporting Dynamic DNS, now you can connect your RPi using email and name instead of IP Address.