logout: - $Author:
QuicklinksExt. LinksMaemo-Wikis, Talk,IRC
Download/ReposWiki -RC N900 Overview
N900 HandlingN900 AppsN900 TopicsResearch / Hints Hardware |
die Schittstellen können auch auf andere Rechnern implementiert sein Generelles was im Zusammenhang Steuerung stehen mag...UART - Universal Asynchronous Receiver Transmitter
GPIOGPIO - General Purpose Input/Output)
Embedded applications (for example, Arduino, BeagleBone, PSoC kits and Raspberry Pi) make heavy use of GPIO for reading from various environmental sensors (IR, video, temperature, 3-axis orientation, and acceleration), and for writing output to DC motors (via PWM), audio, LCD displays, or LEDs for status. GPIO capabilities may include:
PWM - Pulse-width_modulation Programming GPIOhttp://iqjar.com/jar/programming-the-raspberry-pis-gpio-pins-from-command-line-and-bash-script/
Bsp:
gpio mode 5 out gpio write 5 1 To turn the LED off: gpio write 5 0 To read the value of a pin, set it to input mode and get its value: gpio mode 5 in gpio read 5 https://sites.google.com/site/semilleroadt/raspberry-pi-tutorials/gpio (diverse Möglichkeiten) http://stackoverflow.com/questions/25541026/access-gpio-pins-of-pia-from-pib (über Netzwerk?) |