| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /*
- *
- * Copyright (c) 2020 Project CHIP Authors
- * All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include <AppMain.h>
- #include <app/util/af.h>
- #include <platform/CHIPDeviceBuildConfig.h>
- #if defined(CHIP_IMGUI_ENABLED) && CHIP_IMGUI_ENABLED
- #include <imgui_ui/ui.h>
- #include <imgui_ui/windows/boolean_state.h>
- #include <imgui_ui/windows/occupancy_sensing.h>
- #include <imgui_ui/windows/qrcode.h>
- #endif
- using namespace chip;
- using namespace chip::app;
- using namespace chip::app::Clusters;
- void ApplicationInit() {}
- void ApplicationShutdown() {}
- int main(int argc, char * argv[])
- {
- VerifyOrDie(ChipLinuxAppInit(argc, argv) == 0);
- #if defined(CHIP_IMGUI_ENABLED) && CHIP_IMGUI_ENABLED
- example::Ui::ImguiUi ui;
- ui.AddWindow(std::make_unique<example::Ui::Windows::QRCode>());
- ui.AddWindow(std::make_unique<example::Ui::Windows::BooleanState>(chip::EndpointId(1), "Contact Sensor"));
- ui.AddWindow(std::make_unique<example::Ui::Windows::OccupancySensing>(chip::EndpointId(1), "Occupancy"));
- ChipLinuxAppMainLoop(&ui);
- #else
- ChipLinuxAppMainLoop();
- #endif
- return 0;
- }
|