| /* |
| * |
| * Copyright (c) 2023 Project CHIP Authors |
| * |
| * 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 <platform_stdlib.h> |
| |
| #include "CHIPDeviceManager.h" |
| #include "DeviceCallbacks.h" |
| #include "Server.h" |
| #include <DeviceInfoProviderImpl.h> |
| |
| #include "chip_porting.h" |
| #include <platform/CHIPDeviceLayer.h> |
| #include <support/CHIPMem.h> |
| |
| #include <air-purifier-manager.h> |
| #include <app/clusters/identify-server/identify-server.h> |
| #include <app/clusters/network-commissioning/network-commissioning.h> |
| #include <app/server/OnboardingCodesUtil.h> |
| #include <app/util/endpoint-config-api.h> |
| #include <lib/core/ErrorStr.h> |
| #include <platform/Ameba/AmebaConfig.h> |
| #include <platform/Ameba/NetworkCommissioningDriver.h> |
| #include <platform/CHIPDeviceLayer.h> |
| #include <setup_payload/ManualSetupPayloadGenerator.h> |
| #include <setup_payload/QRCodeSetupPayloadGenerator.h> |
| #if CONFIG_ENABLE_AMEBA_CRYPTO |
| #include <platform/Ameba/crypto/AmebaPersistentStorageOperationalKeystore.h> |
| #endif |
| |
| #include <lwip_netconf.h> |
| |
| #if CONFIG_ENABLE_PW_RPC |
| #include "Rpc.h" |
| #endif |
| |
| #define AIR_PURIFIER_ENDPOINT 1 |
| #define AIR_QUALITY_SENSOR_ENDPOINT 2 |
| #define TEMPERATURE_SENSOR_ENDPOINT 3 |
| #define RELATIVE_HUMIDITY_SENSOR_ENDPOINT 4 |
| #define THERMOSTAT_ENDPOINT 5 |
| |
| using namespace ::chip; |
| using namespace ::chip::app; |
| using namespace ::chip::DeviceManager; |
| using namespace ::chip::DeviceLayer; |
| using namespace ::chip::System; |
| |
| namespace { // Network Commissioning |
| constexpr EndpointId kNetworkCommissioningEndpointMain = 0; |
| constexpr EndpointId kNetworkCommissioningEndpointSecondary = 0xFFFE; |
| |
| app::Clusters::NetworkCommissioning::Instance |
| sWiFiNetworkCommissioningInstance(kNetworkCommissioningEndpointMain /* Endpoint Id */, |
| &(NetworkCommissioning::AmebaWiFiDriver::GetInstance())); |
| } // namespace |
| |
| void NetWorkCommissioningInstInit() |
| { |
| sWiFiNetworkCommissioningInstance.Init(); |
| |
| // We only have network commissioning on endpoint 0. |
| emberAfEndpointEnableDisable(kNetworkCommissioningEndpointSecondary, false); |
| } |
| |
| static DeviceCallbacks EchoCallbacks; |
| chip::DeviceLayer::DeviceInfoProviderImpl gExampleDeviceInfoProvider; |
| |
| void OnIdentifyStart(Identify *) |
| { |
| ChipLogProgress(Zcl, "OnIdentifyStart"); |
| } |
| |
| void OnIdentifyStop(Identify *) |
| { |
| ChipLogProgress(Zcl, "OnIdentifyStop"); |
| } |
| |
| void OnTriggerEffect(Identify * identify) |
| { |
| switch (identify->mCurrentEffectIdentifier) |
| { |
| case Clusters::Identify::EffectIdentifierEnum::kBlink: |
| ChipLogProgress(Zcl, "Clusters::Identify::EffectIdentifierEnum::kBlink"); |
| break; |
| case Clusters::Identify::EffectIdentifierEnum::kBreathe: |
| ChipLogProgress(Zcl, "Clusters::Identify::EffectIdentifierEnum::kBreathe"); |
| break; |
| case Clusters::Identify::EffectIdentifierEnum::kOkay: |
| ChipLogProgress(Zcl, "Clusters::Identify::EffectIdentifierEnum::kOkay"); |
| break; |
| case Clusters::Identify::EffectIdentifierEnum::kChannelChange: |
| ChipLogProgress(Zcl, "Clusters::Identify::EffectIdentifierEnum::kChannelChange"); |
| break; |
| default: |
| ChipLogProgress(Zcl, "No identifier effect"); |
| return; |
| } |
| } |
| |
| static Identify gIdentify1 = { |
| chip::EndpointId{ 1 }, OnIdentifyStart, OnIdentifyStop, Clusters::Identify::IdentifyTypeEnum::kVisibleIndicator, |
| OnTriggerEffect, |
| }; |
| |
| static void InitAirPurifierManager(void) |
| { |
| Clusters::AirPurifierManager::InitInstance(EndpointId(AIR_PURIFIER_ENDPOINT), EndpointId(AIR_QUALITY_SENSOR_ENDPOINT), |
| EndpointId(TEMPERATURE_SENSOR_ENDPOINT), |
| EndpointId(RELATIVE_HUMIDITY_SENSOR_ENDPOINT), EndpointId(THERMOSTAT_ENDPOINT)); |
| |
| SetParentEndpointForEndpoint(AIR_QUALITY_SENSOR_ENDPOINT, AIR_PURIFIER_ENDPOINT); |
| SetParentEndpointForEndpoint(TEMPERATURE_SENSOR_ENDPOINT, AIR_PURIFIER_ENDPOINT); |
| SetParentEndpointForEndpoint(RELATIVE_HUMIDITY_SENSOR_ENDPOINT, AIR_PURIFIER_ENDPOINT); |
| SetParentEndpointForEndpoint(THERMOSTAT_ENDPOINT, AIR_PURIFIER_ENDPOINT); |
| } |
| |
| static void InitServer(intptr_t context) |
| { |
| // Init ZCL Data Model and CHIP App Server |
| static chip::CommonCaseDeviceServerInitParams initParams; |
| (void) initParams.InitializeStaticResourcesBeforeServerInit(); |
| #if CONFIG_ENABLE_AMEBA_CRYPTO |
| ChipLogProgress(DeviceLayer, "platform crypto enabled!"); |
| static chip::AmebaPersistentStorageOperationalKeystore sAmebaPersistentStorageOpKeystore; |
| VerifyOrDie((sAmebaPersistentStorageOpKeystore.Init(initParams.persistentStorageDelegate)) == CHIP_NO_ERROR); |
| initParams.operationalKeystore = &sAmebaPersistentStorageOpKeystore; |
| #endif |
| chip::Server::GetInstance().Init(initParams); |
| gExampleDeviceInfoProvider.SetStorageDelegate(&Server::GetInstance().GetPersistentStorage()); |
| chip::DeviceLayer::SetDeviceInfoProvider(&gExampleDeviceInfoProvider); |
| |
| NetWorkCommissioningInstInit(); |
| |
| if (RTW_SUCCESS != wifi_is_connected_to_ap()) |
| { |
| // QR code will be used with CHIP Tool |
| PrintOnboardingCodes(chip::RendezvousInformationFlags(chip::RendezvousInformationFlag::kBLE)); |
| } |
| |
| InitAirPurifierManager(); |
| } |
| |
| extern "C" void ChipTest(void) |
| { |
| ChipLogProgress(DeviceLayer, "Air purifier App Demo!"); |
| CHIP_ERROR err = CHIP_NO_ERROR; |
| |
| #if CONFIG_ENABLE_PW_RPC |
| chip::rpc::Init(); |
| #endif |
| |
| initPref(); |
| |
| CHIPDeviceManager & deviceMgr = CHIPDeviceManager::GetInstance(); |
| |
| err = deviceMgr.Init(&EchoCallbacks); |
| if (err != CHIP_NO_ERROR) |
| { |
| ChipLogError(DeviceLayer, "DeviceManagerInit() - ERROR!\r\n"); |
| } |
| else |
| { |
| ChipLogProgress(DeviceLayer, "DeviceManagerInit() - OK\r\n"); |
| } |
| |
| chip::DeviceLayer::PlatformMgr().ScheduleWork(InitServer, 0); |
| } |
| |
| bool lowPowerClusterSleep() |
| { |
| return true; |
| } |