1 /* 2 * Copyright (c) 2022 HiSilicon (Shanghai) Technologies CO., LIMITED. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef IOT_CONFIG_H 17 #define IOT_CONFIG_H 18 19 // <CONFIG THE LOG 20 /* if you need the iot log for the development , please enable it, else please comment it */ 21 #define CONFIG_LINKLOG_ENABLE 1 22 23 // < CONFIG THE WIFI 24 /* Please modify the ssid and pwd for the own */ 25 #define CONFIG_AP_SSID "Mate 20 Pro (Ud)" // WIFI SSID 26 #define CONFIG_AP_PWD "12345678" // WIFI PWD 27 /* Tencent iot Cloud user ID , password */ 28 #define CONFIG_USER_ID "19VUBHD786mqtt;12010126;YDFHR;1682731282" 29 #define CONFIG_USER_PWD "9e5bb189b803e730def7209767b7135f7e723b7aa61072cbfcd5bff4ab2783f4;hmacsha256" 30 #define CN_CLIENTID "19VUBHD786mqtt" // Tencent cloud ClientID format: Product ID + device name 31 #endif