You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#include <eez/gui/gui.h>
|
|
|
|
#include <eez/gui/data.h>
|
|
|
|
#include "../firmware.h"
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
namespace eez {
|
|
|
|
namespace gui {
|
|
|
|
|
|
|
|
void action_set_pin_status() {
|
|
|
|
if(g_set_pin_status){
|
|
|
|
HAL_GPIO_WritePin(ARDUINO_PWM_D3_GPIO_Port, ARDUINO_PWM_D3_Pin, GPIO_PIN_SET);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
HAL_GPIO_WritePin(ARDUINO_PWM_D3_GPIO_Port, ARDUINO_PWM_D3_Pin, GPIO_PIN_RESET);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace gui
|
|
|
|
} // namespace eez
|