iot增加屏幕背光亮度调节 (#150)

This commit is contained in:
Kevincoooool
2025-02-14 00:21:46 +08:00
committed by GitHub
parent b889355d8d
commit 9b8db4a551
13 changed files with 59 additions and 4 deletions

View File

@@ -131,7 +131,8 @@ private:
// 物联网初始化,添加对 AI 可见设备
void InitializeIot() {
auto& thing_manager = iot::ThingManager::GetInstance();
thing_manager.AddThing(iot::CreateThing("Speaker"));
thing_manager.AddThing(iot::CreateThing("Speaker"));
thing_manager.AddThing(iot::CreateThing("Backlight"));
}
public: