Merge branch 'master' of github.com-gadgetoid:gadgetoid/Pinout2

This commit is contained in:
Phil Howard 2015-10-17 09:23:04 +01:00
commit f8e30d0460
3 changed files with 33 additions and 2 deletions

View File

@ -2,8 +2,21 @@
--- ---
name: Display-o-Tron 3000 name: Display-o-Tron 3000
manufacturer: Pimoroni manufacturer: Pimoroni
github: https://github.com/pimoroni/dot3k
url: https://github.com/pimoroni/dot3k url: https://github.com/pimoroni/dot3k
description: A 3-line character LCD with an RGB backlight and joystick description: A 3-line character LCD with an RGB backlight and joystick
install:
'devices':
- 'i2c'
- 'spi'
'apt':
- 'python-smbus'
- 'python3-smbus'
- 'python-dev'
- 'python3-dev'
'python':
- 'dot3k'
'examples': 'python/examples/'
pincount: 40 pincount: 40
pin: pin:
3: 3:

View File

@ -6,6 +6,15 @@ url: https://github.com/pimoroni/explorer-hat
github: https://github.com/pimoroni/explorer-hat github: https://github.com/pimoroni/explorer-hat
buy: http://shop.pimoroni.com/products/explorer-hat buy: http://shop.pimoroni.com/products/explorer-hat
description: An all-in-one light, input, motor, touch and output add-on board. description: An all-in-one light, input, motor, touch and output add-on board.
install:
'apt':
- 'python-smbus'
- 'python3-smbus'
- 'python-dev'
- 'python3-dev'
'python':
- 'explorerhat'
'examples': 'examples/'
pincount: 40 pincount: 40
i2c: i2c:
'0x28': '0x28':
@ -103,4 +112,4 @@ Then import it into your Python script and start tinkering:
```bash ```bash
import explorerhat import explorerhat
explorerhat.light.on() explorerhat.light.on()
``` ```

View File

@ -6,6 +6,15 @@ url: https://github.com/pimoroni/skywriter-hat
github: https://github.com/pimoroni/skywriter-hat github: https://github.com/pimoroni/skywriter-hat
buy: http://shop.pimoroni.com/products/skywriter-hat buy: http://shop.pimoroni.com/products/skywriter-hat
description: A 3D positional and gesture sensor. description: A 3D positional and gesture sensor.
install:
'apt':
- 'python-smbus'
- 'python3-smbus'
- 'python-dev'
- 'python3-dev'
'python':
- 'skywriter'
'examples': 'python/examples/'
pincount: 40 pincount: 40
pin: pin:
'3': '3':
@ -22,4 +31,4 @@ pin:
Skywriter HAT senses your finger's position above it in 3 dimensions, outputting an X, Y, Z axis 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. which you can use in your Python scripts.
It also recognises gestures, including swipes and more. It also recognises gestures, including swipes and more.