mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
14 lines
269 B
C
14 lines
269 B
C
#include "main.h"
|
|
#include "usart.h"
|
|
#include "gpio.h"
|
|
#include "pikaScript.h"
|
|
|
|
void Device_LED_off(PikaObj *self)
|
|
{
|
|
HAL_GPIO_WritePin(GPIOC, GPIO_PIN_13, GPIO_PIN_SET);
|
|
}
|
|
void Device_LED_on(PikaObj *self)
|
|
{
|
|
HAL_GPIO_WritePin(GPIOC, GPIO_PIN_13, GPIO_PIN_RESET);
|
|
}
|