99精品伊人亚洲|最近国产中文炮友|九草在线视频支援|AV网站大全最新|美女黄片免费观看|国产精品资源视频|精彩无码视频一区|91大神在线后入|伊人终合在线播放|久草综合久久中文

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

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

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

利用機智云的Android開源app修改教程

9GxC_IoTMaker ? 來源:山上有個小和尚 ? 作者:山上有個小和尚 ? 2021-07-05 10:39 ? 次閱讀
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

前言

為了使自己的app更加的有個人風格,故在網(wǎng)上尋找了很多的參考資料,這里是對自己設計的總結,具體機智云APP生成流程請參考我上一篇博客:基于stm32的連接機智云教程。

1、下載機智云開源APP

進行以下操作之前請確保已經(jīng)在機智云中創(chuàng)建了一個產(chǎn)品,下面點擊添加應用,選擇Android生成一個app應用

然后按照提示,將密匙填入到相應位置,具體參考我上一篇博客,點擊下載,將app工程下載到本地

2、Andriod方面處理

2.1 、AS軟件安裝與源碼修改

Android studio軟件安裝與源碼修改

將下載好了的文件解壓出來,然后將第二個文件夾復制出來,粘貼到存放Android studio文件例程文件夾中,若還沒有安裝Android studio的請參考這位大佬的詳細例程,這邊建議下載的Android studio版本不要太新,不然工程可能編譯不成功。

然后自己新建一個Android工程作為參考,方便修改源碼,

第一處參考新建例程修改機智云APP

將此處修改為對應的新建工程的內(nèi)容

第二處按照此路徑參考新建工程修改,這里是我自己的按照自己的新建工程修改完畢的代碼

需注意這里的compile 均替換為implementation,testcompile均替換為testimplementation。

然后可以從Android studio里面打開修改好的機智云開源app,等待一段時間打開后,

2.2、修改APP圖標和名稱

首先在網(wǎng)上下載相關素材備用,若大小不一,請自行修改圖片或者圖標的大小。這時將我們下載好的圖標或者圖片放置到桌面,然后分別復制一下,依次粘貼到drawable-xhdpi目錄下(注意鼠標放在drawable-xhdpi上右擊選Paste便出現(xiàn)如下界面)

點擊確定,將此名稱復制到按照如下圖這個文件,紅框內(nèi)既是我們可以替換的app圖標,將你的圖標名稱填上就ok,

2.3、修改啟動頁面和內(nèi)部UI

現(xiàn)在修改啟動界面,這里的圖片在前面我們已經(jīng)復制到了相關目錄下,現(xiàn)在可以按照下圖將紅框出修改成為你的圖片名稱,見下圖

然后在172行和174行兩處替換為你的設備離線圖標

同樣是這個目錄下,在117行和119行相應位置替換為自己的設備在線圖標

2.4、修改設備監(jiān)控界面

這是我已經(jīng)修改好的界面UI,最后效果圖如下(這里的圖標可自行修改為自己的圖標,若是僅僅復制代碼會報錯)

代碼如下所示,可根據(jù)需要自行修改(僅供參考,最好要讀懂代碼)

《?xml version=“1.0” encoding=“utf-8”?》《LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”android:layout_width=“match_parent”android:layout_height=“match_parent”android:orientation=“vertical”》

《include layout=“@layout/header_toolbar” /》

《ScrollViewandroid:layout_width=“match_parent”android:layout_height=“match_parent”android:background=“@color/background_color”android:fadingEdge=“vertical”android:paddingBottom=“10dp”android:paddingTop=“20dp”android:scrollbars=“vertical” 》

《LinearLayoutandroid:layout_width=“match_parent”android:layout_height=“wrap_content”android:orientation=“vertical”android:scrollbars=“vertical” 》《LinearLayoutandroid:layout_width=“match_parent”android:layout_height=“wrap_content”android:orientation=“horizontal”android:scrollbars=“horizontal” 》

《!-- 燈(布爾可寫) --》《RelativeLayoutandroid:layout_width=“0dp”android:layout_height=“match_parent”android:layout_marginBottom=“1dp”android:layout_weight=“3”android:alpha=“1”android:background=“@color/white”android:gravity=“center_horizontal”android:padding=“10dp”》

《ImageViewandroid:id=“@+id/LED”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:layout_alignParentTop=“true”android:layout_centerHorizontal=“true”android:src=“@drawable/led” /》

《TextViewandroid:id=“@+id/Led_text”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:layout_below=“@+id/LED”android:layout_centerHorizontal=“true”android:layout_centerVertical=“true”android:text=“燈” /》

《Switchandroid:id=“@+id/sw_bool_LED”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:layout_below=“@id/Led_text”android:layout_alignParentBottom=“true”android:layout_centerHorizontal=“true”android:textOff=“關閉”android:textOn=“開啟” /》《/RelativeLayout》

《!-- 蜂鳴器(布爾可寫) --》《RelativeLayoutandroid:layout_width=“0dp”android:layout_weight=“3”android:layout_height=“wrap_content”android:layout_marginBottom=“1dp”android:background=“@color/white”android:padding=“10dp” 》

《ImageViewandroid:id=“@+id/BEEP”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:layout_alignParentTop=“true”android:layout_centerHorizontal=“true”android:src=“@drawable/beep” /》

《TextViewandroid:id=“@+id/BEEP_text”android:layout_width=“wrap_content”android:layout_height=“match_parent”android:layout_centerVertical=“true”android:layout_centerHorizontal=“true”android:layout_below=“@+id/BEEP”android:text=“蜂鳴器” /》

《Switchandroid:id=“@+id/sw_bool_BEEP”android:layout_width=“wrap_content”android:layout_height=“match_parent”android:layout_below=“@+id/BEEP_text”android:layout_centerHorizontal=“true”android:layout_centerVertical=“true”android:textOff=“關閉”android:textOn=“開啟” /》《/RelativeLayout》

《!-- 開關(布爾可寫) --》《RelativeLayoutandroid:layout_width=“0dp”android:layout_weight=“3”android:layout_height=“wrap_content”android:layout_marginBottom=“1dp”android:background=“@color/white”android:padding=“10dp” 》

《ImageViewandroid:id=“@+id/LED1”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:layout_alignParentTop=“true”android:layout_centerHorizontal=“true”android:src=“@drawable/kaiguan” /》《TextViewandroid:id=“@+id/LED1_text”android:layout_width=“wrap_content”android:layout_height=“match_parent”android:layout_below=“@+id/LED1”android:layout_centerHorizontal=“true”android:layout_centerVertical=“true”android:text=“開關” /》《Switchandroid:id=“@+id/sw_bool_LED1”android:layout_width=“wrap_content”android:layout_height=“match_parent”android:layout_below=“@+id/LED1_text”android:layout_centerHorizontal=“true”android:layout_centerVertical=“true”android:textOff=“關閉”android:textOn=“開啟” /》《/RelativeLayout》《/LinearLayout》

《LinearLayoutandroid:layout_width=“match_parent”android:layout_height=“101dp”android:orientation=“horizontal”android:scrollbars=“horizontal”》《!-- 溫度(數(shù)值只讀) --》《RelativeLayoutandroid:layout_width=“0dp”android:layout_weight=“3”android:layout_height=“wrap_content”android:background=“@color/white”android:padding=“10dp” 》

《ImageViewandroid:id=“@+id/Temp”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:layout_alignParentTop=“true”android:layout_centerHorizontal=“true”android:src=“@drawable/wd” /》《TextViewandroid:id=“@+id/tv_data_Temp”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:layout_below=“@+id/Temp”android:layout_centerHorizontal=“true”android:layout_centerVertical=“true” /》《TextViewandroid:layout_marginLeft=“5dp”android:id=“@+id/Temp_text”android:layout_below=“@+id/Temp”android:layout_toRightOf=“@id/tv_data_Temp”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:text=“℃” /》《TextViewandroid:id=“@+id/Temp_text1”android:layout_toLeftOf=“@id/Temp”android:layout_width=“wrap_content”android:layout_height=“match_parent”android:text=“溫度” /》

《/RelativeLayout》

《!-- 濕度(數(shù)值只讀) --》《RelativeLayoutandroid:layout_width=“0dp”android:layout_height=“wrap_content”android:layout_marginBottom=“1dp”android:layout_weight=“3”android:background=“@color/white”android:padding=“10dp”》《ImageViewandroid:id=“@+id/Shidu”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:layout_alignParentTop=“true”android:layout_centerHorizontal=“true”android:src=“@drawable/sd” /》《TextViewandroid:layout_marginLeft=“5dp”android:id=“@+id/Shidu_text”android:layout_below=“@+id/Shidu”android:layout_toRightOf=“@id/tv_data_Shidu”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:text=“%” /》《TextViewandroid:id=“@+id/tv_data_Shidu”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:layout_below=“@+id/Shidu”android:layout_centerHorizontal=“true”android:layout_centerVertical=“true” /》《TextViewandroid:id=“@+id/Shidu_text1”android:layout_toLeftOf=“@id/Shidu”android:layout_width=“wrap_content”android:layout_height=“match_parent”android:text=“濕度” /》《/RelativeLayout》

《!-- 光照強度(數(shù)值只讀) --》《RelativeLayoutandroid:layout_width=“0dp”android:layout_height=“wrap_content”android:layout_marginBottom=“1dp”android:layout_weight=“3”android:background=“@color/white”android:padding=“10dp”》

《ImageViewandroid:id=“@+id/GQ”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:layout_alignParentTop=“true”android:layout_centerHorizontal=“true”android:src=“@drawable/sun” /》

《TextViewandroid:id=“@+id/GQ_text”android:layout_marginLeft=“5dp”android:layout_below=“@+id/GQ”android:layout_toRightOf=“@id/tv_data_GQ”android:layout_width=“wrap_content”android:layout_height=“match_parent”android:text=“l(fā)x” /》《TextViewandroid:id=“@+id/tv_data_GQ”android:layout_width=“wrap_content”android:layout_height=“wrap_content”android:layout_below=“@+id/GQ”android:layout_centerHorizontal=“true”android:layout_centerVertical=“true” /》《TextView

android:id=“@+id/GQ_text1”android:layout_toLeftOf=“@id/GQ”android:layout_width=“wrap_content”android:layout_height=“match_parent”android:text=“光強” /》《/RelativeLayout》《/LinearLayout》《!-- 溫度閾值范圍(數(shù)值可寫) --》《RelativeLayoutandroid:layout_width=“match_parent”android:layout_height=“wrap_content”android:layout_marginBottom=“1dp”android:background=“@color/white”android:padding=“10dp” 》

《TextViewandroid:layout_width=“wrap_content”android:layout_height=“match_parent”android:text=“溫度閾值范圍(℃)” /》

《TextViewandroid:id=“@+id/tv_data_Temp_AlarmScope”android:layout_width=“110dp”android:layout_height=“wrap_content”android:layout_alignParentRight=“true”android:textSize=“16sp”android:gravity=“end” /》

《LinearLayoutandroid:layout_width=“match_parent”android:layout_height=“wrap_content”android:layout_below=“@+id/tv_data_Temp_AlarmScope”android:layout_marginTop=“10dp”android:gravity=“center_vertical”android:orientation=“horizontal” 》

《TextViewandroid:layout_width=“wrap_content”android:layout_height=“wrap_content”android:textSize=“16sp”android:text=“0” /》

《SeekBar

android:id=“@+id/sb_data_Temp_AlarmScope”android:thumb=“@drawable/bar1”android:thumbOffset=“0dp”android:layout_width=“0dp”android:layout_height=“wrap_content”android:layout_weight=“3”android:max=“50” /》

《TextViewandroid:layout_width=“wrap_content”android:layout_height=“wrap_content”android:textSize=“16sp”android:text=“50” /》《/LinearLayout》

《/RelativeLayout》

《!-- 濕度閾值范圍(數(shù)值可寫) --》《RelativeLayoutandroid:layout_width=“match_parent”android:layout_height=“wrap_content”android:layout_marginBottom=“1dp”android:background=“@color/white”android:padding=“10dp” 》

《TextViewandroid:layout_width=“wrap_content”android:layout_height=“match_parent”android:text=“濕度閾值范圍(%)” /》

《TextViewandroid:id=“@+id/tv_data_Shidu_AlarmScope”android:layout_width=“110dp”android:layout_height=“wrap_content”android:layout_alignParentRight=“true”android:textSize=“16sp”android:gravity=“end” /》

《LinearLayoutandroid:layout_width=“match_parent”android:layout_height=“wrap_content”android:layout_below=“@+id/tv_data_Shidu_AlarmScope”android:layout_marginTop=“10dp”android:gravity=“center_vertical”android:orientation=“horizontal” 》

《TextViewandroid:layout_width=“wrap_content”android:layout_height=“wrap_content”android:textSize=“16sp”android:text=“20” /》

《SeekBarandroid:id=“@+id/sb_data_Shidu_AlarmScope”android:thumb=“@drawable/bar”android:thumbOffset=“0dp”android:layout_width=“0dp”android:layout_height=“wrap_content”android:layout_weight=“3”android:max=“75”

android:progress=“0”/》

《TextViewandroid:layout_width=“wrap_content”android:layout_height=“wrap_content”android:textSize=“16sp”android:text=“95” /》《/LinearLayout》

《/RelativeLayout》

《!-- 光強閾值范圍(數(shù)值可寫) --》《RelativeLayoutandroid:layout_width=“match_parent”android:layout_height=“wrap_content”android:layout_marginBottom=“1dp”android:background=“@color/white”android:padding=“10dp” 》

《TextViewandroid:layout_width=“wrap_content”android:layout_height=“match_parent”android:text=“光強閾值范圍(lx)” /》

《TextViewandroid:id=“@+id/tv_data_GQ_AlarmScope”android:layout_width=“110dp”android:layout_height=“wrap_content”android:layout_alignParentRight=“true”android:textSize=“16sp”android:gravity=“end” /》

《LinearLayoutandroid:layout_width=“match_parent”android:layout_height=“wrap_content”android:layout_below=“@+id/tv_data_GQ_AlarmScope”android:layout_marginTop=“10dp”android:gravity=“center_vertical”android:orientation=“horizontal” 》

《TextViewandroid:layout_width=“wrap_content”android:layout_height=“wrap_content”android:textSize=“16sp”android:text=“0” /》

《SeekBar

android:id=“@+id/sb_data_GQ_AlarmScope”android:thumb=“@drawable/bar2”android:thumbOffset=“0dp”android:layout_width=“0dp”android:layout_height=“wrap_content”android:layout_weight=“3”android:max=“65535” /》

《TextViewandroid:layout_width=“wrap_content”android:layout_height=“wrap_content”android:textSize=“16sp”android:text=“65535” /》《/LinearLayout》

《/RelativeLayout》

《/LinearLayout》

《/ScrollView》《/LinearLayout》

2.5、安裝軟件

因為我們的程序編譯無錯誤,故開始安裝app,用數(shù)據(jù)線將電腦手機連接,進入手機的開發(fā)者模式,打開開發(fā)者模式,允許進行USB調(diào)試

然后在android studio端點擊運行,app便安裝成功了

感謝大家觀看,有問題記得留言喲。

原文轉載于:https://blog.csdn.net/Zgc6666/article/details/104187111

編輯:jq

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

    關注

    3

    文章

    3690

    瀏覽量

    43838
  • andriod
    +關注

    關注

    1

    文章

    19

    瀏覽量

    14034

原文標題:基于機智云的Android開源app修改教程

文章出處:【微信號:IoTMaker,微信公眾號:機智云開發(fā)者】歡迎添加關注!文章轉載請注明出處。

收藏 人收藏
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

    評論

    相關推薦
    熱點推薦

    機智亮相字節(jié)豆包AIoT開源生態(tài)沙龍

    近日,字節(jié)跳動火山引擎2025原動力大會在北京隆重召開,同期由機智、火山引擎、扣子發(fā)起,聯(lián)合CSDN、GitCode、廣和通、奕斯偉、愛灣學院共同參與的“開源智聯(lián)·具身同行”字節(jié)豆包AIoT
    的頭像 發(fā)表于 06-16 09:50 ?382次閱讀

    開源智聯(lián)·具身同行:機智推出基于豆包的 OpenEmbodied AI技術、產(chǎn)品及開源方案

    6月11日機智攜手火山引擎、扣子發(fā)起,聯(lián)合CSDN、GitCode、廣和通、奕斯偉、愛灣學院舉辦的“開源智聯(lián)·具身同行”字節(jié)豆包AIoT開源生態(tài)沙龍圓滿成功,正式推出基于豆包
    的頭像 發(fā)表于 06-13 19:19 ?314次閱讀
    <b class='flag-5'>開源</b>智聯(lián)·具身同行:<b class='flag-5'>機智</b><b class='flag-5'>云</b>推出基于豆包的 OpenEmbodied AI技術、產(chǎn)品及<b class='flag-5'>開源</b>方案

    基于STM32 HAL庫與標準庫的esp8266接入機智方案(二)

    ,我們還將討論如何移植HAL庫和標準庫以實現(xiàn)與機智的兼容,幫助開發(fā)者更高效地完成項目的平臺接入。代碼下載注意:此時手機app端的該設備為網(wǎng)頁端的虛擬設備僅僅是
    的頭像 發(fā)表于 05-28 18:02 ?482次閱讀
    基于STM32 HAL庫與標準庫的esp8266接入<b class='flag-5'>機智</b><b class='flag-5'>云</b>方案(二)

    機智Airlink配網(wǎng)超時、數(shù)據(jù)上傳延遲及更新不及時問題分析

    本教程旨在分析并解決在使用32單片機和ESP8266-01S接入機智時可能遇到的配網(wǎng)超時、數(shù)據(jù)上傳延遲及更新不及時的問題。通過將傳感器采集的數(shù)據(jù)上傳至機智
    的頭像 發(fā)表于 05-26 18:03 ?317次閱讀
    <b class='flag-5'>機智</b><b class='flag-5'>云</b>Airlink配網(wǎng)超時、數(shù)據(jù)上傳延遲及更新不及時問題分析

    STM32與機智連接實現(xiàn)步驟與技巧(下篇):機智代碼移植與優(yōu)化

    在《STM32與機智連接實現(xiàn)步驟與技巧(上篇)》中,我們介紹了硬件連接和通信協(xié)議配置。本篇將重點講解如何將機智相關代碼移植到STM32,完成數(shù)據(jù)上傳和設備控制。我們將介紹如何在ST
    的頭像 發(fā)表于 05-23 18:10 ?261次閱讀
    STM32與<b class='flag-5'>機智</b><b class='flag-5'>云</b>連接實現(xiàn)步驟與技巧(下篇):<b class='flag-5'>機智</b><b class='flag-5'>云</b>代碼移植與優(yōu)化

    STM32與機智連接實現(xiàn)步驟與技巧(上篇)

    通過STM32與機智的連接,開發(fā)者可以實現(xiàn)設備的遠程控制和數(shù)據(jù)管理,提升物聯(lián)網(wǎng)應用的智能化水平。本文將介紹STM32與機智連接的具體步驟,涵蓋硬件連接、通信協(xié)議配置、數(shù)據(jù)傳輸及
    的頭像 發(fā)表于 05-23 18:10 ?321次閱讀
    STM32與<b class='flag-5'>機智</b><b class='flag-5'>云</b>連接實現(xiàn)步驟與技巧(上篇)

    如何處理機智移動應用的刪除問題

    如何處理機智移動應用的刪除問題在日常使用機智移動應用時,用戶可能會遇到無法自行刪除應用的問題。根據(jù)最新版本的設計,機智
    的頭像 發(fā)表于 10-23 08:04 ?551次閱讀
    如何處理<b class='flag-5'>機智</b><b class='flag-5'>云</b>移動應用的刪除問題

    【有獎直播】STM32CubeMX移植機智自動生成代碼

    直播亮點1、零門檻接入機智平臺:無需復雜準備,快速實現(xiàn)智能化轉型,輕松上手。2、手機App控制實現(xiàn):通過手機App即可控制智能設備,無需開發(fā)經(jīng)驗,適合零基礎開發(fā)者。3、高效低成本開發(fā)
    的頭像 發(fā)表于 09-27 08:04 ?619次閱讀
    【有獎直播】STM32CubeMX移植<b class='flag-5'>機智</b><b class='flag-5'>云</b>自動生成代碼

    機智智家APP的設備掃描與綁定限制

    在使用機智的智家APP時,用戶可能會遇到無法掃描和綁定設備的問題。這一現(xiàn)象的根本原因在于智家APP的使用限制和付費策略。Q智家APP的功能
    的頭像 發(fā)表于 09-22 08:02 ?590次閱讀
    <b class='flag-5'>機智</b><b class='flag-5'>云</b>智家<b class='flag-5'>APP</b>的設備掃描與綁定限制

    【有獎直播】STM32最小系統(tǒng)板與ESP01S接入機智實戰(zhàn)指南

    直播亮點1、零門檻接入機智平臺:無需復雜準備,快速實現(xiàn)智能化轉型,輕松上手。2、手機App控制實現(xiàn):通過手機App即可控制智能設備,無需開發(fā)經(jīng)驗,適合零基礎開發(fā)者。3、高效低成本開發(fā)
    的頭像 發(fā)表于 09-05 08:03 ?518次閱讀
    【有獎直播】STM32最小系統(tǒng)板與ESP01S接入<b class='flag-5'>機智</b><b class='flag-5'>云</b>實戰(zhàn)指南

    機智開源自動化控制篇-接近報警系統(tǒng)

    本次采用STM32F103C8T6單片機、ESP-01S模塊、紅外避障模塊、蜂鳴器模塊,接入機智平臺,完成接近報警系統(tǒng),為智能化場景增添強大功能。使用到的模塊STM32F103C8T6ESP-01S紅外避障模塊蜂鳴器模塊基本工作進入
    的頭像 發(fā)表于 08-31 08:02 ?679次閱讀
    <b class='flag-5'>機智</b><b class='flag-5'>云</b><b class='flag-5'>開源</b>自動化控制篇-接近報警系統(tǒng)

    Gokit二次開發(fā):云端快速APP生成

    云端快速自定義生成APP機智遠程控制的種類機智遠程控制設備有以下幾種方式:1、機智
    的頭像 發(fā)表于 08-30 12:15 ?672次閱讀
    Gokit二次開發(fā):云端快速<b class='flag-5'>APP</b>生成

    機智開源自動化控制篇:溫濕度報警器

    開發(fā)者中心(gizwits.com)新建數(shù)據(jù)點利用機智開發(fā)者中心的MCU開發(fā)便捷快速生成代碼ESP-01S燒錄機智固件(參考社區(qū)的往期帖
    的頭像 發(fā)表于 08-06 08:10 ?660次閱讀
    <b class='flag-5'>機智</b><b class='flag-5'>云</b><b class='flag-5'>開源</b>自動化控制篇:溫濕度報警器

    STM32項目分享:智能家居(機智)系統(tǒng)

    STM32項目分享:智能家居(機智)系統(tǒng)
    的頭像 發(fā)表于 07-28 08:10 ?3376次閱讀
    STM32項目分享:智能家居(<b class='flag-5'>機智</b><b class='flag-5'>云</b>)系統(tǒng)

    請問Matter Android APP是否支持連接市面上的Matter設備?

    各位大佬們,請教下我基于matter開源Android App,是否可以連接市面上其他的matter協(xié)議設備并且進行控制呢?如果不可以,是需要其他認證碼?
    發(fā)表于 07-24 07:25