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.

16 lines
395 B

#include <eez/gui/gui.h>
2 years ago
#include "../firmware.h"
namespace eez {
namespace gui {
const EnumItem *g_enumDefinitions[] = { nullptr };
2 years ago
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