Multi Wii Copter LCD Config: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Calli (Diskussion | Beiträge) |
Calli (Diskussion | Beiträge) |
||
Zeile 1: | Zeile 1: | ||
LCD_Config is a hardware and software solution to programm the [http://www.multiwii.com/ Multi Wii Copters] on flying field, also it contains the possibility to log data while flying. | LCD_Config is a hardware and software solution to programm the [http://www.multiwii.com/ Multi Wii Copters] on flying field, also it contains the possibility to log data while flying. | ||
Zeile 15: | Zeile 16: | ||
* Output of values for sticks, gyro, acc, and ESCs (excluding graphical views) | * Output of values for sticks, gyro, acc, and ESCs (excluding graphical views) | ||
* Logging onto SD card | * Logging onto SD card | ||
== Hardware == | |||
=== LCD Keypad Shield === | |||
This is the original LCD used with the LCD_Config app: | |||
Schematics: http://www.nuelectronics.com/estore/index.php?main_page=project_lcd | |||
=== Hardware Keys === | |||
If you like to use normal hardware keys on digital ports use this schematic to connect them: | |||
http://arduino.cc/en/Tutorial/DigitalReadSerial | |||
Then remove the comment signs // in front of line: | |||
#define HWKEYS | |||
Define the ports to use here: | |||
// Input pins of the hardbuttons: (used when HWKEYS is defined) | |||
#define HW_RIGHT 10 | |||
#define HW_UP 9 | |||
#define HW_DOWN 11 | |||
#define HW_LEFT 8 | |||
#define HW_SELECT 6 | |||
== States Graphic == | == States Graphic == | ||
[[Bild:LCD Config State.jpg ||thumb|400px|left|Simplified state chart of the LCD Config app]] | [[Bild:LCD Config State.jpg ||thumb|400px|left|Simplified state chart of the LCD Config app]] |
Version vom 26. Januar 2011, 11:23 Uhr
LCD_Config is a hardware and software solution to programm the Multi Wii Copters on flying field, also it contains the possibility to log data while flying.
You need:
- an Arduino board Arduino Boards
- a LCD Display, either using parallel 4 Wires or ShiftReq control
- Some keys, some cable
- latest Arduino Sketch for LCD_Config: http://www.rc-heli-fan.org/download/file.php?id=91727
Features
- works for Multi Wii Software 1.5 (stable) and 1.6 beta
- Communicates to the MultiWii software over serial line like the GUI
- Same parameters changeable as in the GUI
- Output of values for sticks, gyro, acc, and ESCs (excluding graphical views)
- Logging onto SD card
Hardware
LCD Keypad Shield
This is the original LCD used with the LCD_Config app:
Schematics: http://www.nuelectronics.com/estore/index.php?main_page=project_lcd
Hardware Keys
If you like to use normal hardware keys on digital ports use this schematic to connect them:
http://arduino.cc/en/Tutorial/DigitalReadSerial
Then remove the comment signs // in front of line:
- define HWKEYS
Define the ports to use here:
// Input pins of the hardbuttons: (used when HWKEYS is defined)
- define HW_RIGHT 10
- define HW_UP 9
- define HW_DOWN 11
- define HW_LEFT 8
- define HW_SELECT 6