Controlling GPIOs and LEDs
This example demonstrates how to use GPIOs with Gecko OS in general, and how to use GPIOs to control LEDs on Silicon Labs evaluation boards. For details of using GPIOs and peripherals, see Peripherals .
In Gecko OS, a GPIO may have two functions: a standard IO function or an alternative function such as a system indicator, status GPIO or control GPIO. See GPIO Configuration .
When a GPIO is configured with an alternative function, the standard IO function is NOT available and the gpio_dir , gpio_set , and gpio_get commands are disabled for that GPIO.
Before a GPIO can be used to control an LED, it is necessary to first check whether the GPIO is being used for an alternative function. If a GPIO is not being used for an alternative function, but is already in use as a standard GPIO (for another purpose), the GPIO must first be freed up by setting the direction of the GPIO to
none
using the
gpio_dir
command.
GPIO Usage
The gpio.usage variable makes it easy to get a list of GPIOs that are already in use.
Gecko OS Session |
---|
|
LED Control
The following example shows a board which has two LEDs connected to GPIO 21 & 22.
These LEDs are factory configured as system indicators to dynamically indicate the state of the Wi-Fi and network connection (as shown in the table above). To repurpose the GPIOs as standard IOs for use with LEDs, try the Gecko OS command sequence shown in the table below.
Note! Don't forget to adjust the GPIO numbers to suit your specific board!
Gecko OS Commands | Command Description |
---|---|
|
|
To re-instate the system indicators, either factory reset the module, or use the following commands.
Gecko OS Commands | Command Description |
---|---|
|
|
GPIO Initialization
GPIOs may be individually configured for initialization after reset using the gpio.init variable. Don't forget to save & reboot to make sure recent GPIO initialization changes take effect.
Supporting Gecko OS Versions
- Gecko OS 4
Change Log
Modified | Changes |
---|---|
2019-01-01 | Created |