corrected smart quotes plus descriptions edit

This commit is contained in:
RogueM 2017-06-22 14:41:57 +01:00
parent e88fbef183
commit e0aeb82318
2 changed files with 33 additions and 50 deletions

View File

@ -10,11 +10,11 @@ description: A 128x64 display with jostick and buttons for your Pi
url: https://learn.adafruit.com/adafruit-128x64-oled-bonnet-for-raspberry-pi url: https://learn.adafruit.com/adafruit-128x64-oled-bonnet-for-raspberry-pi
github: https://github.com/adafruit/Adafruit_Python_SSD1306 github: https://github.com/adafruit/Adafruit_Python_SSD1306
buy: https://www.adafruit.com/product/3531 buy: https://www.adafruit.com/product/3531
image: 'oledbonnet.png' image: 'adafruit-oled-bonnet.png'
pincount: 40 pincount: 40
eeprom: no eeprom: no
power: power:
'1': '1':
ground: ground:
'6': '6':
'9': '9':
@ -29,52 +29,37 @@ pin:
'3': '3':
mode: i2c mode: i2c
'5': '5':
mode: i2c mode: i2c
'27':
27: name: Joystick left
'23':
name: left name: Joystick right
'4':
23: name: Joystick center
'17':
name: right name: Joystick up
'22':
4: name: Joystick down
name:center '5':
name: Button A
17: '6':
name:up name: Button B
22:
name:down
5:
name:Button A
6:
name:Button B
i2c: i2c:
'0x3c': '0x3c':
name: Display Driver name: Display Driver
device: ssd1306 device: ssd1306
--> -->
# OLED Bonnet # OLED Bonnet
The OLED Bonnet is a simple 128x64 display for Raspberry pi with a 5-way joystick and 2 pushbuttons. The OLED Bonnet is a simple 128x64 display for the Raspberry pi with a 5-way joystick and 2 push buttons.
The 1.3" screen is made of 128x64 individual white OLED pixels and because the display makes its own light, The 1.3" screen is made of a 128x64 individual white OLED pixels and because the display makes its own light, no backlight is required. This reduces the power required to run the OLED and is why the display has such high contrast.
no backlight is required. This reduces the power required to run the OLED and is why the display has such high contrast
To install the necessary software, use the following commands:
```bash ```bash
sudo apt-get install python-imaging python-smbus sudo apt-get install git python-imaging python-smbus
sudo apt-get install git
git clone https://github.com/adafruit/Adafruit_Python_SSD1306.git git clone https://github.com/adafruit/Adafruit_Python_SSD1306.git
cd Adafruit_Python_SSD1306 cd Adafruit_Python_SSD1306
sudo python setup.py install sudo python setup.py install
``` ```

View File

@ -10,11 +10,11 @@ description: A small 128x32 display for your Pi
url: https://learn.adafruit.com/adafruit-pioled-128x32-mini-oled-for-raspberry-pi url: https://learn.adafruit.com/adafruit-pioled-128x32-mini-oled-for-raspberry-pi
github: https://github.com/adafruit/Adafruit_Python_SSD1306 github: https://github.com/adafruit/Adafruit_Python_SSD1306
buy: https://www.adafruit.com/product/3527 buy: https://www.adafruit.com/product/3527
image: '91pioled.png' image: 'adafruit-pi-oled.png'
pincount: 6 pincount: 6
eeprom: no eeprom: no
power: power:
'1': '1':
ground: ground:
'6': '6':
pin: pin:
@ -26,22 +26,20 @@ i2c:
'0x3c': '0x3c':
name: Display Driver name: Display Driver
device: ssd1306 device: ssd1306
--> -->
# PiOLED # PiOLED
* PiOLED is a small 128x32 in a small formfactor board designed to sit on top of just the first six pins of the Pis Header The PiOLED is a small 128x32 OLED display designed to sit on top of just the first six pins of the Pis Header. It uses I2c to communicate which means there are plenty of spare pins for buttons, LEDs and sensors.
* It uses I2c which therefore means there are plenty of spare pins for buttons LEDs and sensors.
* The OLED display has a very high contrast ratio leading to clear and crisp text and images. The OLED display has a very high contrast ratio leading to clear and crisp text and images and as the display produces its own light this also means the PiOLED is extremely low power.
* As the display produces its own light this also means the PiOLED is super low power.
* The SSD1306 chipset is easily controlled using a simple python library. The display is about 1”diagonal and allows for 30FPS updates rates allowing for simple animations and the SSD1306 chipset is easily controlled using a simple python library.
* The display is about 1”diagonal and allows for 30FPS updates rates allowing for simple animations
To install the necessary software, use the following commands:
To Install:
```bash ```bash
sudo apt-get install python-imaging python-smbus sudo apt-get install git python-imaging python-smbus
sudo apt-get install git
git clone https://github.com/adafruit/Adafruit_Python_SSD1306.git git clone https://github.com/adafruit/Adafruit_Python_SSD1306.git
cd Adafruit_Python_SSD1306 cd Adafruit_Python_SSD1306
sudo python setup.py install sudo python setup.py install
``` ```