Using a OLED Display: Difference between revisions

From STorM32-BGC Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
Currently, firmware is provided only for bridge modules which use a STM32 F103T8, F103C8, or F103CB chip. This covers many of the available STM32 development boards, as well as the CC3D atom.
Currently, firmware is provided only for bridge modules which use a STM32 F103T8, F103C8, or F103CB chip. This covers many of the available STM32 development boards, as well as the CC3D atom.


However, a 32-bit micro-controller is not required, and 8-bit controllers such as the ATmegas should also be fine. That is, it would be possible to create a OLED bridge module using Arduino compatible hardware, and Arduino for programming.  
'''''Call for contribution:''' A 32-bit micro-controller is not really required; 8-bit controllers such as the ATmega should also do it. That is, it would be possible to create a OLED bridge module using Arduino compatible hardware, and Arduino for programming. The firmware author has no intent to do that himself, but would strongly support any effoirt in this direction. That is, if someone would identify suitable hardware and establish a basic framework Arduino code, which implements an UART at 115200 baud and the OLED drivers (e.g. using the [[https://learn.adafruit.com/adafruit-gfx-graphics-library/overview AdafruitGFX]] library), then the firmware author would be happy add the communication code to make it functional.''
 
'''Call for contribution:''' The firmware author has no intent to do that himself, but would strongly support any effoirt in this direction. That is, if someone would identify suitable hardware and establish a basic framework Arduino code, which implements an UART at 115200 baud and the OLED drivers (e.g. using the [[https://learn.adafruit.com/adafruit-gfx-graphics-library/overview AdafruitGFX]] library), then the firmware author would be happy add the communication code to make it functional.  
 




<div class="toclimit-2">__TOC__</div>
<div class="toclimit-2">__TOC__</div>

Revision as of 00:49, 3 October 2017

The information on this page refers to firmware v2.31e and higher.

Since firmware version v2.31e, the STorM32 supports OLED displays.

The OLED display allows to graphically present various information, such as the battery voltage and charge level, the gimbal status, and the currently selected pan mode.

Unfortunately, the OLED display cannot be directly connected to the STorM32 main board. This is so because otherwise only the v3.x boards could have been supported, but not the widely used v1.x boards. Also, the firmware is close to exhaust the RAM available on the F103RC micro-controller, and supporting the OLED display directly would have compromised adding future features. Thus, the STorM32's OLED support involves a bridge module, which is connected in between the STorM32 and the OLED display, and which does all the "hard" job. On the positive side, this concept potentially allows users to customize the displayed information to their needs.

Currently, firmware is provided only for bridge modules which use a STM32 F103T8, F103C8, or F103CB chip. This covers many of the available STM32 development boards, as well as the CC3D atom.

Call for contribution: A 32-bit micro-controller is not really required; 8-bit controllers such as the ATmega should also do it. That is, it would be possible to create a OLED bridge module using Arduino compatible hardware, and Arduino for programming. The firmware author has no intent to do that himself, but would strongly support any effoirt in this direction. That is, if someone would identify suitable hardware and establish a basic framework Arduino code, which implements an UART at 115200 baud and the OLED drivers (e.g. using the [AdafruitGFX] library), then the firmware author would be happy add the communication code to make it functional.