RM新时代网站-首页

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

OpenHarmony鴻蒙南向開發(fā)案例:【智能加濕器】

jf_46214456 ? 來源:jf_46214456 ? 作者:jf_46214456 ? 2024-04-19 15:50 ? 次閱讀

樣例簡介

智能加濕器具有實(shí)時(shí)監(jiān)控其所處環(huán)境溫度、濕度,并通過數(shù)字管家設(shè)置日程,自動(dòng)打開加濕器控制濕度功能。顯示界面使用DevEco Studio 編寫的js應(yīng)用,具有很好的兼容和移植特性。硬件上采用了帶有HDF框架的驅(qū)動(dòng)模型,通過GPIO和IIC分別來控制電機(jī)開關(guān)和采集濕度信息,還可以通過語音模塊識(shí)別語音命令,再通過串口跟主板通信來控制加濕器電機(jī)開關(guān)。

image-20211229111026037

運(yùn)行效果

當(dāng)設(shè)備應(yīng)用啟動(dòng)之后,操作效果如下

image-20211229161901515

樣例原理

產(chǎn)品示意圖——智能垃圾桶

如上圖所示,智能加濕器整體方案原理圖可以大致分成:智能加濕器設(shè)備、數(shù)字管家應(yīng)用、云平臺(tái)三部分。智能加濕器通過MQTT協(xié)議連接華為IOT物聯(lián)網(wǎng)平臺(tái),從而實(shí)現(xiàn)命令的接收和屬性上報(bào)。

工程版本

  • 系統(tǒng)版本/API版本:OpenHarmony 3.1 Beta
  • hb版本:0.4.4
  • 工具鏈版本:gcc-arm-none-eabi-10.3-2021.10

快速上手

鴻蒙開發(fā)指導(dǎo)文檔:[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md]

搜狗高速瀏覽器截圖20240326151450.png

準(zhǔn)備硬件環(huán)境

  • V200Z-R藍(lán)牙WIFI語音AIoT模組恒玄BES2600WM開發(fā)板
  • BearPi-HM Nano套件中的E53_IA1拓展板
  • 機(jī)芯智能語音模塊
  • 預(yù)裝HarmonyOS手機(jī)一臺(tái)
    注:HarmonyOS是華為基于開源項(xiàng)目OpenHarmony開發(fā)的面向多種全場(chǎng)景智能設(shè)備的商用版本

準(zhǔn)備開發(fā)環(huán)境

安裝必備軟件

開發(fā)基礎(chǔ)環(huán)境由 windows 工作臺(tái)和 Linux 編譯服務(wù)器組成。windows 工作臺(tái)可以通過 samba 服務(wù)或 ssh 方式訪問 Linux編譯服務(wù)器。其中 windows 工作臺(tái)用來燒錄和代碼編輯,Linux 編譯服務(wù)器用來編譯 OpenHarmony 代碼,為了簡化步驟,Linux 編譯服務(wù)器推薦安裝 Ubuntu20.04 64位。

安裝編譯依賴基礎(chǔ)軟件
sudo apt-get install -y build-essential gcc g++ make zlib* libffi-dev git git-lfs
安裝和配置Python
  • 打開Linux終端。
  • 輸入如下命令,查看python版本號(hào),需要使用python3.7以上版本。
python3 --version
  • 安裝并升級(jí)Python包管理工具(pip3)。
sudo apt-get install python3-setuptools python3-pip -y
sudo pip3 install --upgrade pip
  • 設(shè)置pip的國內(nèi)鏡像
pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple requests
安裝hb
  • 輸入如下命令確認(rèn)hb是否為version 0.4.4
hb -v

a. 若提示如下內(nèi)容,則表示未安裝可以從第2步開始操作。

bash: /home/***/.local/bin/hb: No such file or directory

b.若提示如下內(nèi)容,需要先卸載該版本,然后再執(zhí)行第2步操作步驟。

[OHOS INFO] hb version 0.4.3

卸載命令:

pip3 uninstall ohos-build
  • 運(yùn)行如下命令安裝hb
pip3 install build/lite   // 該命令需在OpenHarmony源碼根目錄下執(zhí)行
  • 設(shè)置環(huán)境變量
vim ~/.bashrc

將以下命令拷貝到.bashrc文件的最后一行,保存并退出。

export PATH=~/.local/bin:$PATH

執(zhí)行如下命令更新環(huán)境變量。

source ~/.bashrc
  • 再次執(zhí)行”hb -v“,有以下版本顯示則表示安裝的hb版本正確。
[OHOS INFO] hb version 0.4.4
安裝交叉編譯環(huán)境

在Linux編譯服務(wù)器上搭建好基礎(chǔ)開發(fā)環(huán)境后,需要安裝OpenHarmony 編譯V200Z-R平臺(tái)特有的開發(fā)環(huán)境。

安裝arm-none-eabi-gcc
  • 打開Linux終端。
  • 下載[arm-none-eabi-gcc]編譯工具。
  • 安裝[arm-none-eabi-gcc]

解壓 [gcc-arm-none-eabi-10.3-2021.10-x86_64-linux.tar.bz2]安裝包至~/toolchain/路徑下。

mkdir -p ~/toolchain/
tar -jxvf gcc-arm-none-eabi-10.3-2021.10-x86_64-linux.tar.bz2 -C ~/toolchain/

設(shè)置環(huán)境變量。

vim ~/.bashrc

將以下命令拷貝到.bashrc文件的最后一行,保存并退出。

export PATH=~/toolchain/gcc-arm-none-eabi-10.3-2021.10/bin:$PATH

生效環(huán)境變量。

source ~/.bashrc
  • 在命令行中輸入如下命令,如果能正確顯示編譯器版本號(hào),表明編譯器安裝成功。
arm-none-eabi-gcc -v

準(zhǔn)備工程

本用例采用repo的方式從碼云官倉下載系統(tǒng)系統(tǒng)源碼以及開發(fā)板適配代碼,使用git從gitee的sig倉庫拉取設(shè)備應(yīng)用代碼。

配置git
  • 提前注冊(cè)準(zhǔn)備碼云gitee賬號(hào)。
  • git工具下載安裝
    sudo apt install git
    sudo apt install git-lfs
    
  • 生成/添加SSH密鑰:生成密鑰
    使用gitee賬號(hào)綁定的郵箱生成密鑰對(duì)
    ssh-keygen -t ed25519 -C "xxxxx@xxxxx.com"
    
  • 查看生成的密鑰
    cat ~/.ssh/id_ed25519.pub
    
  • 復(fù)制生成后的 ssh key,返回gitee個(gè)人主頁,通過主頁 「個(gè)人設(shè)置」->「安全設(shè)置」->「SSH 公鑰」 ,將生成的“SSH密鑰”添加到倉庫中。
  • 配置git用戶信息
    git config --global user.name "yourname"
    git config --global user.email "your-email-address"
    git config --global credential.helper store
    
準(zhǔn)備repo
sudo curl https://gitee.com/oschina/repo/raw/fork_flow/repo-py3 > /usr/local/bin/repo
chmod a+x /usr/local/bin/repo
pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple requests
準(zhǔn)備系統(tǒng)源碼
#特別注意:請(qǐng)下載OpenHarmony 3.1 Beta版本
mkdir ~/OpenHarmony_3.1_Beta
cd ~/OpenHarmony_3.1_Beta
repo init -u git@gitee.com:openharmony/manifest.git -b refs/tags/OpenHarmony-v3.1-Beta --no-repo-verify
repo sync -c
repo forall -c 'git lfs pull'

注意:

  • 權(quán)限問題請(qǐng)參考[生成/添加SSH公鑰]。
  • 若在已安裝python3.8后,執(zhí)行repo init 時(shí),仍顯示如下錯(cuò)誤:
/usr/bin/env: ‘python’: No such file or directory

執(zhí)行如下命令后,進(jìn)行重試:

sudo ln -s /usr/bin/python3.8 /usr/bin/python
準(zhǔn)備設(shè)備側(cè)應(yīng)用代碼

使用git 命令下載。

git clone git@gitee.com:openharmony-sig/knowledge_demo_smart_home.git --depth=1
編譯前準(zhǔn)備
  • 代碼拷貝
mkdir ~/OpenHarmony_3.1_Beta/vendor/team_x/
主代碼拷貝:
cp -rfa  ~/knowledge_demo_smart_home/dev/team_x/smart_humidifier  ~/OpenHarmony_3.1_Beta/vendor/team_x/
iot_link三方庫拷貝:
cp -rfa  ~/knowledge_demo_smart_home/dev/third_party/iot_link ~/OpenHarmony_3.1_Beta/third_party/
common庫拷貝:
cp -rfa ~/knowledge_demo_smart_home/dev/team_x/common ~/OpenHarmony_3.1_Beta/vendor/team_x
iot_link庫拷貝:
cp -rfa ~/knowledge_demo_smart_home/dev/third_party/iot_link ~/OpenHarmony_3.1_Beta/third_party/

步驟1. 下載patch [地址]

? 點(diǎn)擊上述鏈接進(jìn)入瀏覽器,將該網(wǎng)頁中內(nèi)容全部復(fù)制。

? 本地創(chuàng)建一個(gè)名為***.patch文件,并將已經(jīng)復(fù)制的內(nèi)容粘貼到該文件中。

步驟2. 打上步驟1中的patch

cd ~/OpenHarmony_3.1_Beta/kernel/liteos_m
patch -p1 < ***.patch
  • device/soc/bestechnic 修改

步驟1. 下載patch

? 點(diǎn)擊上述鏈接進(jìn)入瀏覽器,將該網(wǎng)頁中內(nèi)容全部復(fù)制。

? 本地創(chuàng)建一個(gè)名為***.patch文件,并將已經(jīng)復(fù)制的內(nèi)容粘貼到該文件中。

步驟2. 打上步驟1中的patch

cd ~/OpenHarmony_3.1_Beta/device/soc/bestechnic
patch -p1 < ***.patch
  • third_party/mbedtls 修改

參考如下代碼段修改 platform.c 和BUILD.gn

diff --git a/library/platform.c b/library/platform.c
index c4c3fd3..214173b 100755
--- a/library/platform.c
+++ b/library/platform.c
@@ -86,9 +86,24 @@ static void platform_free_uninit( void *ptr )
 static void * (*mbedtls_calloc_func)( size_t, size_t ) = MBEDTLS_PLATFORM_STD_CALLOC;
 static void (*mbedtls_free_func)( void * ) = MBEDTLS_PLATFORM_STD_FREE;
 
+#include "los_memory.h"
+
 void * mbedtls_calloc( size_t nmemb, size_t size )
 {
-    return (*mbedtls_calloc_func)( nmemb, size );
+    //return (*mbedtls_calloc_func)( nmemb, size );
+    size_t real_size;
+    void *ptr = NULL;
+
+    if (nmemb == 0 || size == 0) {
+        return NULL;
+    }
+
+    real_size = (size_t)(nmemb * size);
+    ptr = LOS_MemAlloc(OS_SYS_MEM_ADDR, real_size);
+    if (ptr != NULL) {
+        (void)memset_s(ptr, real_size, 0, real_size);
+    }
+    return ptr;
 }
diff --git a/BUILD.gn b/BUILD.gn
index 9ecb37a..30dbb2e 100755
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -124,6 +124,7 @@ if (defined(ohos_lite)) {
         "http://kernel/liteos_m/kernel/include",
         "http://kernel/liteos_m/utils",
         "http://third_party/musl/porting/liteos_m/kernel/include/",
+        "http://kernel/liteos_m/kernel/include/",
       ]
     }
     output_name = "mbedtls"
  • third_party/lwip 修改

修改src/api/netdb.c 文件

diff --git a/src/api/netdb.c b/src/api/netdb.c
index 52a6fdf..2043636 100644
--- a/src/api/netdb.c
+++ b/src/api/netdb.c
@@ -100,7 +100,7 @@ lwip_gethostbyname(const char *name)
   err = netconn_gethostbyname(name, &addr);
   if (err != ERR_OK) {
     LWIP_DEBUGF(DNS_DEBUG, ("lwip_gethostbyname(%s) failed, err=%dn", name, err));
-    h_errno = HOST_NOT_FOUND;
+    //h_errno = HOST_NOT_FOUND;
     return NULL;
   }
  • 修改iot_link中的部分文件

步驟1. third_party/iot_link/network/mqtt/paho_mqtt/port/paho_mqtt_port.c

測(cè)試發(fā)現(xiàn),當(dāng)fd為0的時(shí)候,在執(zhí)行recv時(shí)會(huì)立馬返回-1,因此做下面規(guī)避操作。

static int __socket_connect(Network *n, const char *host, int port)
{
    ...
    int tmpfd = socket(AF_INET,SOCK_STREAM,0); // to skip fd = 0;
    fd = socket(AF_INET,SOCK_STREAM,0);
    if(fd == -1) {
        return ret;
    }
    close(tmpfd);       // to skip fd = 0;
    ...
}

系統(tǒng)setsockopt函數(shù)未適配,因此需要做下面的修改:

static int __socket_read(void *ctx, unsigned char *buf, int len, int timeout)
{
    int fd;
    int ret = 0;
#if 0
    struct timeval timedelay = {timeout / 1000, (timeout % 1000) * 1000};
    if(NULL== buf)
    {
        return ret;
    }
    
    fd = (int)(intptr_t)ctx;  ///< socket could be zero

    if (timedelay.tv_sec < 0 || (timedelay.tv_sec == 0 && timedelay.tv_usec <= 0))
    {
        timedelay.tv_sec = 0;
        timedelay.tv_usec = 100;
    }
    
    if(0 != setsockopt(fd,SOL_SOCKET,SO_RCVTIMEO,&timedelay,sizeof(struct timeval)))
    {
        return ret;  //could not support the rcv timeout
    }
    int bytes = 0;
    while (bytes < len) {
        int rc = recv(fd, &buf[bytes], (size_t)(len - bytes), 0);
        printf("[%s|%s|%d]fd = %d, rc = %dn", __FILE__,__func__,__LINE__, fd, rc);
        if (rc == -1) {
            if (errno != EAGAIN && errno != EWOULDBLOCK) {
                bytes = -1;
            }
            break;
        } else if (rc == 0) {
            bytes = 0;
            break;
        } else {
            bytes += rc;
        }
    }
    return bytes;
#else
    int bytes = 0;
    fd_set fdset;

    struct timeval timedelay = {timeout / 1000, (timeout % 1000) * 1000};
    if(NULL== buf)
    {
        return ret;
    }
    
    fd = (int)(intptr_t)ctx;  ///< socket could be zero

    if (timedelay.tv_sec < 0 || (timedelay.tv_sec == 0 && timedelay.tv_usec <= 0))
    {
        timedelay.tv_sec = 0;
        timedelay.tv_usec = 100;
    }
    timedelay.tv_sec = 2;
    FD_ZERO(&fdset);
    FD_SET(fd, &fdset);

    ret = select(fd + 1, &fdset, NULL, NULL, &timedelay);
    if (ret > 0) {
        while (bytes < len) {
            int rc = recv(fd, &buf[bytes], (size_t)(len - bytes), 0);
 //         printf("[%s|%s|%d]fd = %d, rc = %d, errno=%d(%s)n", __FILE__,__func__,__LINE__, fd, rc,errno, strerror(errno));
            if (rc == -1) {
                if (errno != EAGAIN && errno != EWOULDBLOCK) {
                    bytes = -1;
                }
                break;
            } else if (rc == 0) {
                bytes = 0;
                break;
            } else {
                bytes += rc;
            }
        }
    }

    return bytes;
#endif
}

步驟2. third_party/iot_link/network/dtls/mbedtls/mbedtls_port/dtls_interface.c

系統(tǒng)部分mbedtls接口不一致,固需要注釋部分接口代碼:

mbedtls_ssl_context dtls_ssl_new(dtls_establish_info_s *info, char plat_type)
{
    ...
    if (info- >psk_or_cert == VERIFY_WITH_PSK)
    {
/*
        if ((ret = mbedtls_ssl_conf_psk(conf,
                                        info- >v.p.psk,
                                        info- >v.p.psk_len,
                                        info- >v.p.psk_identity,
                                        strlen((const char *)info- >v.p.psk_identity))) != 0)
        {
            MBEDTLS_LOG("mbedtls_ssl_conf_psk failed: -0x%x", -ret);
            goto exit_fail;
        }
*/
    }
    ...
}

int dtls_shakehand(mbedtls_ssl_context *ssl, const dtls_shakehand_info_s *info)
{
    ...
    if (MBEDTLS_SSL_IS_CLIENT == info- >client_or_server)
    {
        ret = mbedtls_net_connect(server_fd, info- >u.c.host, info- >u.c.port, info- >udp_or_tcp);
        if( 0 != ret)
        {
            ret = MBEDTLS_ERR_NET_CONNECT_FAILED;
            goto exit_fail;
        }
    }
    else
    {
        //server_fd = (mbedtls_net_context*)atiny_net_bind(NULL, info- >u.s.local_port, MBEDTLS_NET_PROTO_UDP);
        ///< --TODO ,not implement yet
    }
    ...
}

void dtls_init(void)
{
    (void)mbedtls_platform_set_calloc_free(calloc, free);
    (void)mbedtls_platform_set_snprintf(snprintf);
//    (void)mbedtls_platform_set_printf(printf);
}

步驟3. 修改dtls下的BUILD.gn因?yàn)槿跻脤?dǎo)致無法鏈接相關(guān)符號(hào)

diff --git a/dev/third_party/iot_link/network/dtls/BUILD.gn b/dev/third_party/iot_link/network/dtls/BUILD.gn
index 035805d7..05188295 100755
--- a/dev/third_party/iot_link/network/dtls/BUILD.gn
+++ b/dev/third_party/iot_link/network/dtls/BUILD.gn
@@ -17,6 +17,7 @@ dtls_inc = [
     "../../link_misc",
     "http://kernel/liteos_m/components/cmsis/2.0",
     "http://third_party/mbedtls/include/",
+    "http://base/hiviewdfx/hilog_lite/interfaces/native/innerkits/",^M
 ]
 
 
@@ -41,7 +42,8 @@ dtls_cflags = [
     "-Wno-unused-parameter",
 ]
 
-static_library("dtls") {
+#static_library("dtls") {^M
+source_set("dtls") {^M
         cflags = dtls_cflags
         defines = dtls_def
         sources = dtls_src

步驟4. 修改mqtt下的BUILD.gn因?yàn)槿跻脤?dǎo)致無法鏈接相關(guān)符號(hào)

diff --git a/dev/third_party/iot_link/network/mqtt/BUILD.gn b/dev/third_party/iot_link/network/mqtt/BUILD.gn
index 5a4a8e0d..f56f4ae6 100755
--- a/dev/third_party/iot_link/network/mqtt/BUILD.gn
+++ b/dev/third_party/iot_link/network/mqtt/BUILD.gn
@@ -16,8 +16,10 @@ mqtt_paho_inc = [
     "paho_mqtt/paho/MQTTPacket/src",
     "paho_mqtt/port",
     "../../inc",
+    "http://third_party/musl/porting/liteos_m/kernel/include/",^M
     "http://kernel/liteos_m/components/cmsis/2.0",
     "http://vendor/hisi/hi3861/hi3861/third_party/lwip_sack/include/",
+    "http://base/hiviewdfx/hilog_lite/interfaces/native/innerkits/",^M
 ]
 
 
@@ -50,7 +52,8 @@ mqtt_cflags = [
     "-Wno-unused-function",
 ]
 
-static_library("mqtt") {
+#static_library("mqtt") {^M
+source_set("mqtt") {^M
         cflags = mqtt_cflags
         defines = mqtt_paho_defs
         sources = mqtt_paho_src

步驟5. 修改時(shí)間編譯問題:

iff --git a/dev/third_party/iot_link/network/mqtt/paho_mqtt/port/paho_osdepends.h b/dev/third_party/iot_link/network/mqtt/paho_mqtt/port/paho_osdepends.h
index 2c6cab1b..38e3dce3 100755
--- a/dev/third_party/iot_link/network/mqtt/paho_mqtt/port/paho_osdepends.h
+++ b/dev/third_party/iot_link/network/mqtt/paho_mqtt/port/paho_osdepends.h
@@ -84,6 +84,7 @@
 
 #include "ohos_init.h"
 #include "cmsis_os2.h"
+#include "sys/time.h"
 #include  < mqtt_al.h >
 
 #define MQTT_TASK 1
@@ -117,6 +118,13 @@ typedef struct Thread
 int ThreadStart(Thread*, void (*fn)(void*), void* arg);
 
 
+#define timeradd(s,t,a) (void) ( (a)- >tv_sec = (s)- >tv_sec + (t)- >tv_sec, ^M
+        ((a)- >tv_usec = (s)- >tv_usec + (t)- >tv_usec) >= 1000000 && ^M
+        ((a)- >tv_usec -= 1000000, (a)- >tv_sec++) )^M
+#define timersub(s,t,a) (void) ( (a)- >tv_sec = (s)- >tv_sec - (t)- >tv_sec, ^M
+        ((a)- >tv_usec = (s)- >tv_usec - (t)- >tv_usec) < 0 && ^M
+        ((a)- >tv_usec += 1000000, (a)- >tv_sec--) )^M
+^M
 typedef struct Network
 {
     void *ctx;                      ///< if it is tls, then it is tls context, else it is socket fd
  • 配置相關(guān)的修改

步驟1. gpio hdf框架相關(guān)修改。

根據(jù)下方代碼修改drivers/adapter/platform/gpio/gpio_bes.c

diff --git a/platform/gpio/gpio_bes.c b/platform/gpio/gpio_bes.c
index ed4d18b..890d528 100755
--- a/platform/gpio/gpio_bes.c
+++ b/platform/gpio/gpio_bes.c
@@ -257,7 +257,7 @@ static int32_t GpioDriverBind(struct HdfDeviceObject *device)
     }

     gpioCntlr.device.hdfDev = device;
-    device- >service = gpioCntlr.device.service;
+    device- >service = &(gpioCntlr.device);

     return HDF_SUCCESS;
 }

步驟2 . uart相關(guān)配置,本實(shí)例使用uart1接口,相對(duì)應(yīng)的GPIO為gpio20,gpio21。電機(jī)控制使用的gpio11,相關(guān)的配置如下所示,文件路徑:/home/water/OpenHarmony_3.1_Beta/device/board/fnlink/shields/v200zr-evb-t1/v200zr-evb-t1.hcs

diff --git a/shields/v200zr-evb-t1/v200zr-evb-t1.hcs b/shields/v200zr-evb-t1/v200zr-evb-t1.hcs
index 44212eb..f8d0985 100644
--- a/shields/v200zr-evb-t1/v200zr-evb-t1.hcs
+++ b/shields/v200zr-evb-t1/v200zr-evb-t1.hcs
@@ -1,6 +1,6 @@
 #include "../../hcs/v200zr.hcs"
 root {
-    /*device_info {
+    device_info {
         platform :: host {
             device_uart :: device {
                 uart2 :: deviceNode {
@@ -8,21 +8,21 @@ root {
                     priority = 40;                      
                     permission = 0644;                  
                     moduleName = "BES_UART_MODULE_HDF";   
-                    serviceName = "HDF_PLATFORM_UART_2";
+                    serviceName = "HDF_PLATFORM_UART_1";
                     deviceMatchAttr = "uart2_config";
                 }
             }
         }
-    }*/
+    }
     platform {
         gpio_config {
             match_attr = "gpio_config";
-            pin = [0, 1];
+            pin = [0, 1, 2];
             // touch_ztw523: TSP_RST - GPIO12, TSP_INT-GPIO27
             // touch_fts: TSP_RST - GPIO05, TSP_INT-GPIO27
-            realPin = [5, 27];
-            config = [5, 2];
-            pinNum = 2;
+            realPin = [5, 27, 11];
+            config = [5, 2, 2];
+            pinNum = 3;
         }
         i2c_config {
             i2c0 {
@@ -52,7 +52,7 @@ root {
                 mode = 0;
             }
         }
-        /*uart_config {
+        uart_config {
             template uart_controller {
                 match_attr = "";
                 num = 0;
@@ -65,9 +65,9 @@ root {
             }
             uart2 :: uart_controller {
                 match_attr = "uart2_config";
-                num = 2;
+                num = 1;
             }
-        }*/
+        }
     }
     display {
         panel_config {
(END)

步驟3. iic相關(guān)的配置,使i2c1通道和芯片管腳gpio6,gpio7相關(guān)的配置如下:

i2c_config {
            i2c1 {
                match_attr = "i2c1_config";
                port = 1;
                speed = 200000;
                // TSP_SCL/SDA - I2C1 = GPIO06/GPIO07
                sclPin = 6;
                sdaPin = 7;
                useDma = 0;
                useSync = 1;
                asMaster = 1;
                address_width = 8;
                mode = 0;
            }
        }
  • 將JS應(yīng)用合入工程。

本節(jié)為可選章節(jié),忽略本節(jié)內(nèi)容不影響本項(xiàng)目的展示和運(yùn)行。但若想要在本項(xiàng)目的基礎(chǔ)上進(jìn)行涉及到顯示的內(nèi)容修改與新規(guī)開發(fā),則需完整的閱讀本節(jié)及鏈接內(nèi)容。

1.下載并安裝[DevEco Studio]。

2.新建一個(gè)js工程。

工程名為:smart_humidifier/FA

project

3.在DevEco Studio的SDK中添加@system.communicationkit.d.ts文件。

將@system.communicationkit.d.ts文件(源文件目錄:~/knowledge_demo_smart_home/dev/interface/sdk-js/api/common/@system.communicationkit.d.ts)拷貝到DevEco Studio的SDK中(目標(biāo)目錄: HarmonyOS Legacy SDK /js/3.0.0.0/api/common)。HarmonyOS Legacy SDK目錄在DevEco Studio安裝時(shí),由用戶配置,該目錄位置可在設(shè)置(ctrl+alt+s)中查找。

setting

4.編譯hap包。

依次選擇構(gòu)建 -> Build Hap(s)/APP(s) -> Build Hap(s)進(jìn)行hap包編譯。

build

5.使用預(yù)覽功能得到 js 包: entry.previewintermediatesresdebugliteassetsjsdefault

image-20211229115647534

將 js 包放到文件系統(tǒng)里面:

default目錄中除app.js.map外的的數(shù)據(jù)全部拷貝到OpenHarmonySDK中的//vendor/team_x/smart_humidifier/fs/data/data/js目錄下:

需要注意 :FA的bundleName必須和工程代碼//vendor/team_x/smart_humidifier/demo_smart_humidifier/ability/ability_device.cpp文件里面定義的JS_BUNDLE_NAME一致。

#define JS_BUNDLE_NAME "com.example.control_panel2.hmservice"

FA中的bundleName:

image-20211229115647534

工程效果

整合并修改完成后的代碼目錄結(jié)構(gòu)如下圖:

image-20211229115647534

編譯

編譯命令:

hb set  // 如果是第一次編譯,Input code path 命令行中鍵入"./" 指定OpenHarmony工程編譯根目錄后 回車,

如下圖所示,使用鍵盤上下鍵選中智能加濕器 “smart_humidifier”,(注:工程名字根據(jù)實(shí)際要編譯的工程來)如圖:

image-20211229115748113

hb build // 如果需要全量編譯,可以添加-f 選項(xiàng)

編譯通過,生成固件成功,如圖:

image-20211229120006333

燒錄/安裝

  • 安裝[CP2102驅(qū)動(dòng)]
  • 固件編譯完成以后拷貝./out/v200zr/smart_door_bell/write_flash_gui文件夾到windows下,并點(diǎn)擊Wifi_download_main.exe

downlaod

  • 點(diǎn)擊工具上的文件夾圖標(biāo)

downlaod

  • 選擇List按鈕

downlaod

  • 在顯示出來的串口列表中選擇需要燒錄的串口,并點(diǎn)擊開始按鈕。

downlaod

  • 在開發(fā)板上點(diǎn)擊reset按鍵,或者重新上電。

reset

  • 進(jìn)入燒錄狀態(tài)

download end

  • 燒錄成功

download over

操作體驗(yàn)

鴻蒙開發(fā)應(yīng)用知識(shí)已更新[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md]

設(shè)備配網(wǎng)
  • 在設(shè)備上電前需準(zhǔn)備好安裝了數(shù)字管家應(yīng)用的HarmonyOS手機(jī), 并在設(shè)置中開啟手機(jī)的NFC功能;
  • 寫設(shè)備NFC標(biāo)簽;
  • 燒錄完成后,上電,將手機(jī)上半部靠近NFC標(biāo)簽;
  • 無需任何操作手機(jī)將自動(dòng)拉起數(shù)字管家應(yīng)用并進(jìn)入配網(wǎng)界面,輸入熱點(diǎn)密碼。

humidifier connect

設(shè)備操作

手機(jī)端開關(guān)機(jī)

審核編輯 黃宇

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • 加濕器
    +關(guān)注

    關(guān)注

    3

    文章

    167

    瀏覽量

    20669
  • 鴻蒙
    +關(guān)注

    關(guān)注

    57

    文章

    2339

    瀏覽量

    42804
  • HarmonyOS
    +關(guān)注

    關(guān)注

    79

    文章

    1973

    瀏覽量

    30139
  • OpenHarmony
    +關(guān)注

    關(guān)注

    25

    文章

    3713

    瀏覽量

    16252
收藏 人收藏

    評(píng)論

    相關(guān)推薦

    OpenHarmony南向開發(fā)案例:【分布式畫板】

    使用OpenHarmony3.1-Release開發(fā)的應(yīng)用。通過OpenHarmony的分布式技術(shù),使多人能夠一起畫畫。
    的頭像 發(fā)表于 04-12 14:40 ?1035次閱讀
    <b class='flag-5'>OpenHarmony</b><b class='flag-5'>南向</b><b class='flag-5'>開發(fā)案</b>例:【分布式畫板】

    OpenHarmony南向開發(fā)案例:【智能油煙機(jī)】

    基于Hi3516開發(fā)板,使用開源OpenHarmony開發(fā)的應(yīng)用。
    的頭像 發(fā)表于 04-18 15:54 ?1046次閱讀
    <b class='flag-5'>OpenHarmony</b><b class='flag-5'>南向</b><b class='flag-5'>開發(fā)案</b>例:【<b class='flag-5'>智能</b>油煙機(jī)】

    OpenHarmony鴻蒙南向開發(fā)案例:【智能貓眼(基于Hi3518開發(fā)板)】

    基于Hi3518開發(fā)板,使用開源OpenHarmony開發(fā)的RTSP協(xié)議流媒體應(yīng)用。達(dá)到將Hi3518開發(fā)板中攝像頭獲取的數(shù)據(jù)通過RTSP協(xié)議傳輸?shù)绞謾C(jī)并顯示 。
    的頭像 發(fā)表于 04-22 15:46 ?2008次閱讀
    <b class='flag-5'>OpenHarmony</b><b class='flag-5'>鴻蒙</b><b class='flag-5'>南向</b><b class='flag-5'>開發(fā)案</b>例:【<b class='flag-5'>智能</b>貓眼(基于Hi3518<b class='flag-5'>開發(fā)</b>板)】

    OpenHarmony南向開發(fā)案例:【 智能家居中控】

    今天打造的這一款全新智能家庭控制系統(tǒng),凸顯應(yīng)用在智能控制和用戶體驗(yàn)的特點(diǎn),開創(chuàng)國內(nèi)智能家居系統(tǒng)體驗(yàn)新局面。新的系統(tǒng)主要應(yīng)用在鴻蒙生態(tài)。
    的頭像 發(fā)表于 04-23 15:50 ?995次閱讀
    <b class='flag-5'>OpenHarmony</b><b class='flag-5'>南向</b><b class='flag-5'>開發(fā)案</b>例:【 <b class='flag-5'>智能</b>家居中控】

    鴻蒙開發(fā)南向環(huán)境搭建教學(xué)

    南向開發(fā)環(huán)境搭建教學(xué),更多鴻蒙開發(fā)資料可以前往高清完整版 《鴻蒙開發(fā)4.0基礎(chǔ)-高階文檔》找保存
    發(fā)表于 01-05 16:38

    OpenHarmony南向能力征集令

    1、適配過程中缺少哪些接口能力或者南向能力,需要OpenHarmony去補(bǔ)齊的?例如內(nèi)核、編譯、器件適配、單板適配等; 2、對(duì)標(biāo)linux,需要OpenHarmony提供哪些能力?比如V4L2
    發(fā)表于 04-09 15:32

    鴻蒙OpenHarmony南向/北向快速開發(fā)教程-迅為RK3568開發(fā)

    4.1學(xué)習(xí)之旅了嗎?快來加入我們,一起探索鴻蒙4.1系統(tǒng)的無限魅力吧! 【北京迅為】OpenHarmony學(xué)習(xí)開發(fā)系列教程(第1期 北向基礎(chǔ)篇一) P0_先導(dǎo)課 P1_OpenHarmony
    發(fā)表于 07-23 10:44

    凌蒙派-開源鴻蒙北向App控制南向設(shè)備應(yīng)用示例-RGB燈控制

    OpenHarmony標(biāo)準(zhǔn)系統(tǒng),rgb三色燈APP控制,hdf?napi?UI框架,一個(gè)開源鴻蒙北向應(yīng)用開發(fā),控制南向設(shè)備應(yīng)用。
    發(fā)表于 03-22 10:56

    華為開發(fā)者分論壇HarmonyOS學(xué)生公開課-OpenHarmony Codelabs開發(fā)案

    2021華為開發(fā)者分論壇HarmonyOS學(xué)生公開課-OpenHarmony Codelabs開發(fā)案
    的頭像 發(fā)表于 10-24 11:25 ?1913次閱讀
    華為<b class='flag-5'>開發(fā)</b>者分論壇HarmonyOS學(xué)生公開課-<b class='flag-5'>OpenHarmony</b> Codelabs<b class='flag-5'>開發(fā)案</b>例

    鴻蒙NEXT南向開發(fā)案例:【智能臺(tái)燈】

    鴻蒙南向開發(fā)智能臺(tái)燈案例
    的頭像 發(fā)表于 04-03 18:00 ?1000次閱讀
    <b class='flag-5'>鴻蒙</b>NEXT<b class='flag-5'>南向</b><b class='flag-5'>開發(fā)案</b>例:【<b class='flag-5'>智能</b>臺(tái)燈】

    OpenHarmony南向開發(fā)案例:【智能中控屏】

    基于Hi3516開發(fā)板,使用開源OpenHarmony開發(fā)的應(yīng)用。通過控制面板可以控制同一局域網(wǎng)內(nèi)的空調(diào),窗簾,燈等智能家居設(shè)備。
    的頭像 發(fā)表于 04-17 16:12 ?382次閱讀
    <b class='flag-5'>OpenHarmony</b><b class='flag-5'>南向</b><b class='flag-5'>開發(fā)案</b>例:【<b class='flag-5'>智能</b>中控屏】

    OpenHarmony鴻蒙南向開發(fā)案例:【智能門鈴】

    智能門鈴?fù)ㄟ^監(jiān)控來訪者信息,告訴主人門外是否有人按鈴、有陌生人靠近或者無人狀態(tài)。
    的頭像 發(fā)表于 04-19 15:35 ?585次閱讀
    <b class='flag-5'>OpenHarmony</b><b class='flag-5'>鴻蒙</b><b class='flag-5'>南向</b><b class='flag-5'>開發(fā)案</b>例:【<b class='flag-5'>智能</b>門鈴】

    OpenHarmony鴻蒙南向開發(fā)案例:【智能燃?xì)鈾z測(cè)設(shè)備】

    安全廚房案例中的相關(guān)智能燃?xì)鈾z測(cè)設(shè)備,本安全廚房案例利用輕量級(jí)軟總線能力,將兩塊歐智通V200Z-R/BES2600開發(fā)板模擬的智能燃?xì)鈾z測(cè)設(shè)備和燃?xì)飧婢O(shè)備組合成。當(dāng)燃?xì)鈹?shù)值告警時(shí),無需其它操作,直接通知軟總線網(wǎng)絡(luò)中的通風(fēng)設(shè)備
    的頭像 發(fā)表于 04-19 17:17 ?611次閱讀
    <b class='flag-5'>OpenHarmony</b><b class='flag-5'>鴻蒙</b><b class='flag-5'>南向</b><b class='flag-5'>開發(fā)案</b>例:【<b class='flag-5'>智能</b>燃?xì)鈾z測(cè)設(shè)備】

    OpenHarmony鴻蒙南向開發(fā)案例:【智能窗戶通風(fēng)設(shè)備】

    本文檔介紹了安全廚房案例中的相關(guān)智能窗戶通風(fēng)設(shè)備,本安全廚房案例利用輕量級(jí)軟總線能力,將兩塊歐智通V200Z-R/BES2600開發(fā)板模擬的智能窗戶通風(fēng)設(shè)備和燃?xì)飧婢O(shè)備組合成。當(dāng)燃?xì)鈹?shù)值告警時(shí),無需其它操作,直接通知軟總線網(wǎng)絡(luò)
    的頭像 發(fā)表于 04-22 17:20 ?444次閱讀
    <b class='flag-5'>OpenHarmony</b><b class='flag-5'>鴻蒙</b><b class='flag-5'>南向</b><b class='flag-5'>開發(fā)案</b>例:【<b class='flag-5'>智能</b>窗戶通風(fēng)設(shè)備】

    OpenHarmony鴻蒙南向開發(fā)案例:【智能貓眼(基于3516開發(fā)板)】

    基于Hi3516開發(fā)板,使用開源OpenHarmony開發(fā)的RTSP協(xié)議流媒體應(yīng)用。達(dá)到將Hi3516開發(fā)板中攝像頭獲取的數(shù)據(jù)通過RTSP協(xié)議傳輸?shù)绞謾C(jī)并顯示 。
    的頭像 發(fā)表于 04-19 22:01 ?598次閱讀
    <b class='flag-5'>OpenHarmony</b><b class='flag-5'>鴻蒙</b><b class='flag-5'>南向</b><b class='flag-5'>開發(fā)案</b>例:【<b class='flag-5'>智能</b>貓眼(基于3516<b class='flag-5'>開發(fā)</b>板)】
    RM新时代网站-首页