mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-14 00:53:49 +01:00
107 lines
2.4 KiB
C
107 lines
2.4 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2024 Krzysztof Cabaj <kcabaj@gmail.com>
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
/**
|
|
* @ingroup examples
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief leds_shell - sample application for demonstrating internal
|
|
* board LEDs on/off and basic GPIO using interactive RIOT shell
|
|
*
|
|
* @author Krzysztof Cabaj <kcabaj@gmail.com>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include "stdio.h"
|
|
#include "stdlib.h"
|
|
#include "shell.h"
|
|
#include "led.h"
|
|
#include <periph/gpio.h>
|
|
|
|
static int _gpio_cmd(int argc, char **argv)
|
|
{
|
|
if (argc < 4) {
|
|
printf("usage: %s <init/set/clear> <port no.> <pin no.>\n", argv[0]);
|
|
return -1;
|
|
}
|
|
|
|
int port_no = atoi(argv[2]);
|
|
int pin_no = atoi(argv[3]);
|
|
|
|
if (strcmp(argv[1], "init") == 0) {
|
|
printf("GPIO initialization PORT %d, PIN %d\n", port_no, pin_no);
|
|
|
|
int result;
|
|
|
|
result = gpio_init(GPIO_PIN(port_no, pin_no), GPIO_OUT);
|
|
|
|
if (result == 0) {
|
|
printf("Success!\n");
|
|
}
|
|
else {
|
|
printf("Failure!\n");
|
|
}
|
|
}
|
|
else if (strcmp(argv[1], "set") == 0) {
|
|
printf("Set HIGH to PORT %d, PIN %d\n", port_no, pin_no);
|
|
gpio_set(GPIO_PIN(port_no, pin_no));
|
|
}
|
|
else if (strcmp(argv[1], "clear") == 0) {
|
|
printf("Set LOW to PORT %d, PIN %d\n", port_no, pin_no);
|
|
gpio_clear(GPIO_PIN(port_no, pin_no));
|
|
}
|
|
else {
|
|
printf("usage: %s <init/set/clear> <port no.> <pin no.>\n", argv[0]);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
SHELL_COMMAND(gpio, "GPIO pin initialization and set port state HIGH/LOW", _gpio_cmd);
|
|
|
|
static int _led_cmd(int argc, char **argv)
|
|
{
|
|
if (argc < 3) {
|
|
printf("usage: %s <id> <on|off|toggle>\n", argv[0]);
|
|
return -1;
|
|
}
|
|
|
|
int led_id = atoi(argv[1]);
|
|
|
|
if (led_id >= LED_NUMOF) {
|
|
printf("This board has %d LEDs\n", LED_NUMOF);
|
|
return -1;
|
|
}
|
|
|
|
if (strcmp(argv[2], "on") == 0) {
|
|
led_on(led_id);
|
|
}
|
|
else if (strcmp(argv[2], "off") == 0) {
|
|
led_off(led_id);
|
|
}
|
|
else if (strcmp(argv[2], "toggle") == 0) {
|
|
led_toggle(led_id);
|
|
}
|
|
else {
|
|
printf("usage: %s <id> <on|off|toggle>\n", argv[0]);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
SHELL_COMMAND(led, "Switch on/off or toggle on-board LEDs", _led_cmd);
|
|
|
|
int main(void)
|
|
{
|
|
char line_buf[SHELL_DEFAULT_BUFSIZE];
|
|
printf("This board has %d LEDs\n", LED_NUMOF);
|
|
|
|
shell_run(NULL, line_buf, SHELL_DEFAULT_BUFSIZE);
|
|
|
|
return 0;
|
|
}
|