Merge pull request #32 from rdmueller/master

more translations to german
This commit is contained in:
Philip Howard 2015-11-11 21:08:18 +00:00
commit 9df891e4e6
10 changed files with 55 additions and 51 deletions

View File

@ -3,7 +3,7 @@
name: Display-o-Tron HAT
manufacturer: Pimoroni
url: https://github.com/pimoroni/dot3k
description: A 3-line character LCD with a 6-zone RGB backlight and 6 touch buttons
description: Ein 3-zeiliges LCD mit einer 6-Zonen RGB Hintergrundbeleuchtung und 6 Tasten
pincount: 40
pin:
3:
@ -32,13 +32,13 @@ pin:
-->
#Display-o-Tron HAT
Display-o-Tron HAT uses both SPI and I2c to drive the LCD display, backlight and touch.
However both of these busses can be shared with other devices.
Der Display-o-Tron HAT benutzt den SPI- und I2C-Bus um das LC-Display, die Hintergrundbeleuchtung und die Tasten zu steuern bzw. abzufragen.
Beide Busse können aber weiterhin noch mit anderen Komponenten genutzt werden.
You can use the one-line product installer to get Display-o-Tron HAT set up and ready to go, just:
Mit diesem Einzeiler installierst Du den Display-o-Tron HAT:
```bash
curl get.pimoroni.com/dot3k | bash
```
And follow the instructions!
...den Rest findest Du in der Anleitung auf Github :-)

View File

@ -4,7 +4,7 @@ name: Display-o-Tron 3000
manufacturer: Pimoroni
github: https://github.com/pimoroni/dot3k
url: https://github.com/pimoroni/dot3k
description: A 3-line character LCD with an RGB backlight and joystick
description: Ein 3-zeiliges LCD mit RGB Hintergrundbeleuchtung und Joystick
install:
'devices':
- 'i2c'
@ -24,25 +24,25 @@ pin:
5:
mode: i2c
7:
name: Joystick Button
name: Joystick Taste
mode: input
active: low
11:
name: Joystick Left
name: Joystick links
mode: input
active: low
13:
name: Joystick Up
name: Joystick oben
mode: input
active: low
15:
name: Joystick Right
name: Joystick rechts
mode: input
active: low
19:
mode: spi
21:
name: Joystick Down
name: Joystick unten
mode: input
active: low
22:
@ -54,10 +54,10 @@ pin:
-->
#Display-o-Tron 3000
You can use the one-line product installer to get Display-o-Tron 3000 set up and ready to go, just:
Mit diesem Einzeiler installierst Du das Display-o-Tron 3000:
```bash
curl get.pimoroni.com/dot3k | bash
```
And follow the instructions!
...den Rest findest Du in der Anleitung auf Github :-)

View File

@ -1,12 +1,12 @@
<!--
---
name: Raspberry Pi Dots
description: Join the dots to make a circuit
description: verbinde die Punkte um eine Schaltung zu erstellen
url: http://www.raspberrypi.org/dots/
github: https://github.com/raspberrypilearning/dots
pin:
bcm0:
name: 'Color: Blue'
name: 'Farbe: Blau'
direction: input
bcm1:
name: Dot 7
@ -36,7 +36,7 @@ pin:
name: Dot 17
direction: input
bcm10:
name: 'Color: Green'
name: 'Farbe: Grün'
direction: input
bcm11:
name: Dot 8
@ -63,7 +63,7 @@ pin:
name: Dot 20
direction: input
bcm19:
name: 'Color: Orange'
name: 'Farbe: Orange'
direction: input
bcm20:
name: Bear
@ -87,16 +87,18 @@ pin:
name: Dot 11
direction: input
bcm27:
name: 'Color: Red'
name: 'Farbe: Rot'
direction: input
-->
#Raspberry Pi Dots
###Dots is a Dot to Dot HAT board for the Raspberry Pi that lets you join-the-dots with BARE Conductive Paint!
###Dots ist eine verbinde die Punkte HAT Platine für den Raspberry Pi, auf dem Du Punkte mit leitender Farbe verbindest!
Every Dot on the Dots board is a "floating" metal contact just waiting to be pulled down to ground with a dab of paint.
Jeder Punkt auf der Dots-Platine ist ein offener Metallkontakt der darauf wartet mit der Farbe kontaktiert zu werden.
Um einen Punkt auszulesen setze den dazugehörigen Anschluss als Eingang und checke, ob der Kontakt hergestellt ist:
To read a Dot you should set its corresponding pin as an INPUT and make sure it's pulled up like so:
```python
import RPi.GPIO as GPIO
@ -105,8 +107,8 @@ GPIO.setup(dot_pin, GPIO.IN, GPIO.PUD_UP)
state = GPIO.input(dot_pin)
```
It's good practise to only turn on the PULLUP when you actually want to read the Dot, so a method like
this is recommended for reading:
Es ist gute Praxis den Eingang nur auf PULLUP zu schalten, wenn Du den Kontakt auch lesen möchtest.
Somit ist folgender Code empfohlen:
```python
def is_dot_connected(dot_pin):

View File

@ -108,7 +108,7 @@ sudo apt-get install python-pip
sudo pip install explorer-hat
```
Anschliessend die Libraries in Dein Python-Skript importieren und basteln:
Anschliessend die Libraries in Dein Python-Skript importieren und anfangen zu basteln:
```bash
import explorerhat

View File

@ -1,7 +1,7 @@
<!--
---
name: I2C
description: Raspberry Pi i2c pins
description: Raspberry Pi I2C Anschlüsse
pin:
'3':
name: Data
@ -21,24 +21,25 @@ pin:
active: high
-->
#I2C - Inter Integrated Circuit
#I2C - Inter Integrated Circuit
The Raspberry Pi's I2C pins are an extremely useful way to talk to many different types of external peripheral; from the MCP23017 digital IO expander, to a connected ATmega.
Der I2C-Bus des Raspberry Pi ist sehr praktisch um mit vielen unterschiedlichen Bausteinen
zu kommunizieren - egal ob z.B. ein MCP23017 als digitale I/O-Erweiterung oder sogar ein ATmega.
You can verify the address of connected I2C peripherals with a simple one-liner:
Die Adresse einen angeschlossenen I2C-Bausteins kann mit einem einfachen Einzeiler überprüft werden:
```bash
sudo apt-get install i2c-tools
sudo i2cdetect -y 1
```
You can access i2c from Python using the smbus library:
Den I2C-Bus kann man von Python aus über die smbus-Library ansteuern:
```bash
sudo apt-get install python-smbus
```
And then in Python:
...und dann in Python:
```python
import smbus

View File

@ -3,7 +3,7 @@
name: Piano HAT
manufacturer: Pimoroni
url: https://github.com/pimoroni/piano-hat
description: A tiny Pi piano with 16 touch-sensitive buttons
description: Ein kleines Pi Piano mit 16 berührungsempfindlichen Tasten
pincount: 40
i2c:
'0x28':
@ -34,14 +34,14 @@ pin:
-->
#Piano HAT
Piano HAT has 16 touch-sensitive buttons. 13 of these are a single Piano octave, the rest give you octave up/down and instrument select functionality.
Piano HAT hat 16 berührungsempfindliche Tasten. 13 dieser Tasten bilden eine Piano-Oktave, die anderen lassen die die Oktave hoch oder runter schalten und Instrumente auswählen.
It uses two Microchip CAP1188 chips with the i2c addresses 0x28 and 0x2b.
Der HAT benutzt zwei Microchip CAP1188 ICs mit den I2C Adressen 0x28 und 0x2b.
You can use the one-line product installer to get Piano HAT set up and ready to go, just:
Mit folgendem Einzeiler installierst Du die nötige Software:
```bash
curl get.pimoroni.com/pianohat | bash
```
And follow the instructions!
Den Rest findest Du in der Anleitung!

View File

@ -3,7 +3,7 @@
name: Pibrella
manufacturer: Pimoroni Vs Cyntech
url: https://github.com/pimoroni/pibrella
description: An all-in-one light, sound, input and output add-on board.
description: eine "Alles-in-Einem" Licht, Ton, Ein- und Ausgabe Erweiterungsplatine.
pincount: 26
pin:
'7':
@ -61,16 +61,17 @@ pin:
-->
#Pibrella
The all-in-one light, sound, input and output add-on board from Pimoroni vs Cyntech uses lots of IO on the Pi but leaves both Serial and I2C free leaving plenty of room for expansion if you get creative.
Die "Alles-in-Einem" Licht, Ton, Ein- und Ausgabe Erweiterungsplatine von Pimoroni vs Cyntech
benutzt jede Menge I/O Anschlüsse des Pi aber lässt die serielle Schnittstelle und den I2C-Bus noch frei und somit viel Raum für creative Erweiterungen!
Pibrella is easy to use, first you should install the module using LXTerminal/Command Line:
Pibrella is einfach zu benutzen - einfach das entsprechende Modul über die Kommandozeile installieren:
```bash
sudo apt-get install python-pip
sudo pip install pibrella
```
Then import it into your Python script and start tinkering:
... dann die Library in Dein Python-Skript importieren und anfangen zu basteln:
```bash
import pibrella

View File

@ -5,7 +5,7 @@ manufacturer: Pimoroni
url: https://github.com/pimoroni/piglow
github: https://github.com/pimoroni/piglow
buy: http://shop.pimoroni.com/products/piglow
description: Simply 18 LEDs in a spiral pattern controllable in Python.
description: 18 einfache LEDs als Spirale angeordnet und über Python ansteuerbar.
pincount: 26
pin:
'1': {}

View File

@ -5,7 +5,7 @@ manufacturer: Pimoroni
url: https://github.com/pimoroni/skywriter-hat
github: https://github.com/pimoroni/skywriter-hat
buy: http://shop.pimoroni.com/products/skywriter-hat
description: A 3D positional and gesture sensor.
description: Ein 3D Positions- und Gesten-Sensor.
install:
'apt':
- 'python-smbus'
@ -28,7 +28,7 @@ pin:
-->
#Skywriter HAT
Skywriter HAT senses your finger's position above it in 3 dimensions, outputting an X, Y, Z axis
which you can use in your Python scripts.
Skywriter HAT spürt die Position Deines Fingers über ihm in drei Dimensionen und gibt die somit die X-, Y- und Z-Koordinaten, welche Du in Deinen Python-Skripten verarbeiten kannst.
Er erkennt auch Gesten wie z.B. wischen und andere.
It also recognises gestures, including swipes and more.

View File

@ -4,7 +4,7 @@ name: Unicorn HAT
manufacturer: Pimoroni
url: http://shop.pimoroni.com/products/unicorn-hat
buy: http://shop.pimoroni.com/products/unicorn-hat
description: 64 blindingly bright RGB LEDs on a single HAT
description: 64 blendend helle RGB LEDs auf einem HAT
github: https://github.com/pimoroni/unicornhat
install:
'apt':
@ -26,19 +26,19 @@ pin:
-->
#Unicorn HAT
64 blindingly bright LEDs packed into a HAT and driven with an ultra-fast, C library that you can talk to
from Python make Unicorn HAT PiGlow's bigger, brighter brother.
64 blendend helle LEDs auf einem HAT, die über eine super schnelle C-Library angesteuert werden.
Die C-Library lässt sich auch über Python ansteuern. Der Unicorn HAT ist quasi der grössere und hellere Bruder der PiGlow.
Note: Unicorn HAT uses some special PWM trickery, performed with the same hardware that lets you Pi produce sound
through the audio jack ( analog audio ) so you can't use both at the same time!
Hinweis: der Unicorn HAT trickst ein wenig mit dem PWM-Ausgang - der gleichen Hardware, mit der Dein Pi Sounds über den
analogen Audio-Ausgang erzeugen kann. Somit kannst Du nicht beides gleichzeitig nutzen!
Setup is easy, just:
Die Einrichtung des HATs ist einfach:
```bash
curl get.pimoroni.com/unicornhat | bash
```
Then import it into your Python script and start tinkering:
Dann musst Du die Library nur noch in Dein Python-Skript importieren und kannst anfangen zu experimentieren:
```bash
import unicornhat