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.
15 lines
395 B
15 lines
395 B
#include <eez/gui/gui.h> |
|
#include "../firmware.h" |
|
|
|
namespace eez { |
|
namespace gui { |
|
|
|
const EnumItem *g_enumDefinitions[] = { nullptr }; |
|
bool g_set_pin_status = false; |
|
|
|
void data_arduino_pwm_d3_pin_status(DataOperationEnum operation, const WidgetCursor &widgetCursor, Value &value) { |
|
value = Value(g_set_pin_status, VALUE_TYPE_BOOLEAN); |
|
} |
|
|
|
} // namespace gui |
|
} // namespace eez
|
|
|