Jetzt muß ich mich mal als OLED-Dummi outen....
OK, ich hab's hinbekommen, die normale P-I-D Geschichte an rennen zu kriegen.
Auch habe ich es hinbekommen, daß im Displays meine Mobilrufnummer angezeigt wird, mit der Bitte bei Modellfund diese anzurufen.
Das die AUX-Einstellungen angezeigt werden, ging auch.
Aber offenbar geht da noch mehr...
Wenn ich mir die Bilder auf
http://www.multiwiicopter.com/products/1-oled anschaue, kann auch das TX-Signal sichtbar gemacht werden. Aber wie??

- MultiwiiCopter_OLED_8573e__53852_std.jpg (29.15 KiB) 581 mal betrachtet
Dann kann ja auch noch Telemetry aktivieren - hab' ich gemacht, aber mit keiner Stick-Kombi dem Teil Daten entlocken können...
Evtl. lag es auch daran, daß ich nicht genau wußte, welchen "Zusatz" ich auch noch einkommentieren muß...
Code: Alles auswählen
/**************************************************************************************/
/*********************** telemetry **************************/
/**************************************************************************************/
/* to monitor system values (battery level, loop time etc. with LCD enable this
note: for now you must send single characters to request different pages
Buttons toggle request for page on/off
The active page on the LCD does get updated automatically
Easy to use with Terminal application or display like LCD - if available uses the 4 preconfigured buttons to send 'A', 'B', 'C', 'D' */
/******************************** Activation ***********************************/
#define LCD_TELEMETRY
/* to enable automatic hopping between a choice of telemetry pages uncomment this.
This may be useful if your LCD has no buttons or the sending is broken
hopping is activated and deactivated in unarmed mode with throttle=low & roll=left & pitch=forward
set it to the sequence of telemetry pages you want to see
2 line displays support pages 1-9
multiline displays support pages 1-5 */
//#define LCD_TELEMETRY_AUTO "123452679" // pages 1 to 7 in ascending order <------- was genau bewirken diese Einstellungen?
//#define LCD_TELEMETRY_AUTO "212232425262729" // strong emphasis on page 2 <------- was genau bewirken diese Einstellungen?
/* same as above, but manual stepping sequence; requires
stick input (throttle=low & roll=right & pitch=forward) to
step through each defined telemetry page */
//#define LCD_TELEMETRY_STEP "0123456789" // must begin with 0 <------- was genau bewirken diese Einstellungen?
/* on telemetry page B (2) it gives a bar graph which shows how much voltage battery has left. Range from 0 to 12 Volt is not very informative
so we try do define a meaningful range. For a 3S battery we define full=12,6V and calculate how much it is above first warning level
Example: 12.6V - VBATLEVEL1_3S (for me = 126 - 102 = 24) */
#define VBATREF 24
/* if program gets too large (>32k), need to exclude some functionality
uncomment to suppress some unwanted telemetry pages (only useful if telemetry is enabled) */
//#define SUPPRESS_TELEMETRY_PAGE_1
//#define SUPPRESS_TELEMETRY_PAGE_2
//#define SUPPRESS_TELEMETRY_PAGE_3
//#define SUPPRESS_TELEMETRY_PAGE_4
//#define SUPPRESS_TELEMETRY_PAGE_5
//#define SUPPRESS_TELEMETRY_PAGE_6
//#define SUPPRESS_TELEMETRY_PAGE_7
//#define SUPPRESS_TELEMETRY_PAGE_8
//#define SUPPRESS_TELEMETRY_PAGE_9