knxdisplay/main/Gui.hpp
2026-01-19 09:51:32 +01:00

15 lines
239 B
C++

#pragma once
#include "lvgl.h"
#include "KnxWorker.hpp"
class Gui {
public:
void create();
static KnxWorker knxWorker; // Make it public
private:
static void slider_event_cb(lv_event_t * e);
static lv_obj_t * label2;
};