在线观看www成人影院-在线观看www日本免费网站-在线观看www视频-在线观看操-欧美18在线-欧美1级

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

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

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

利用機(jī)智云的Android開(kāi)源app修改教程

9GxC_IoTMaker ? 來(lái)源:山上有個(gè)小和尚 ? 作者:山上有個(gè)小和尚 ? 2021-07-05 10:39 ? 次閱讀

前言

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

1、下載機(jī)智云開(kāi)源APP

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

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

2、Andriod方面處理

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

Android studio軟件安裝與源碼修改

將下載好了的文件解壓出來(lái),然后將第二個(gè)文件夾復(fù)制出來(lái),粘貼到存放Android studio文件例程文件夾中,若還沒(méi)有安裝Android studio的請(qǐng)參考這位大佬的詳細(xì)例程,這邊建議下載的Android studio版本不要太新,不然工程可能編譯不成功。

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

第一處參考新建例程修改機(jī)智云APP

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

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

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

然后可以從Android studio里面打開(kāi)修改好的機(jī)智云開(kāi)源app,等待一段時(shí)間打開(kāi)后,

2.2、修改APP圖標(biāo)和名稱

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

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

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

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

然后在172行和174行兩處替換為你的設(shè)備離線圖標(biāo)

同樣是這個(gè)目錄下,在117行和119行相應(yīng)位置替換為自己的設(shè)備在線圖標(biāo)

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

這是我已經(jīng)修改好的界面UI,最后效果圖如下(這里的圖標(biāo)可自行修改為自己的圖標(biāo),若是僅僅復(fù)制代碼會(huì)報(bào)錯(cuò))

代碼如下所示,可根據(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” 》

《!-- 燈(布爾可寫(xiě)) --》《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=“關(guān)閉”android:textOn=“開(kāi)啟” /》《/RelativeLayout》

《!-- 蜂鳴器(布爾可寫(xiě)) --》《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=“關(guān)閉”android:textOn=“開(kāi)啟” /》《/RelativeLayout》

《!-- 開(kāi)關(guān)(布爾可寫(xiě)) --》《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=“開(kāi)關(guān)” /》《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=“關(guān)閉”android:textOn=“開(kāi)啟” /》《/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》

《!-- 光照強(qiáng)度(數(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=“光強(qiáng)” /》《/RelativeLayout》《/LinearLayout》《!-- 溫度閾值范圍(數(shù)值可寫(xiě)) --》《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ù)值可寫(xiě)) --》《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》

《!-- 光強(qiáng)閾值范圍(數(shù)值可寫(xiě)) --》《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=“光強(qiáng)閾值范圍(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、安裝軟件

因?yàn)槲覀兊某绦蚓幾g無(wú)錯(cuò)誤,故開(kāi)始安裝app,用數(shù)據(jù)線將電腦手機(jī)連接,進(jìn)入手機(jī)的開(kāi)發(fā)者模式,打開(kāi)開(kāi)發(fā)者模式,允許進(jìn)行USB調(diào)試

然后在android studio端點(diǎn)擊運(yùn)行,app便安裝成功了

感謝大家觀看,有問(wèn)題記得留言喲。

原文轉(zhuǎn)載于:https://blog.csdn.net/Zgc6666/article/details/104187111

編輯:jq

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

    關(guān)注

    3

    文章

    3632

    瀏覽量

    43572
  • andriod
    +關(guān)注

    關(guān)注

    1

    文章

    19

    瀏覽量

    13992

原文標(biāo)題:基于機(jī)智云的Android開(kāi)源app修改教程

文章出處:【微信號(hào):IoTMaker,微信公眾號(hào):機(jī)智云開(kāi)發(fā)者】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。

收藏 人收藏

    評(píng)論

    相關(guān)推薦
    熱點(diǎn)推薦

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

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

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

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

    基于STM32 HAL庫(kù)與標(biāo)準(zhǔn)庫(kù)的esp8266接入機(jī)智方案(二)

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

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

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

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

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

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

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

    如何處理機(jī)智移動(dòng)應(yīng)用的刪除問(wèn)題

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

    【有獎(jiǎng)直播】STM32CubeMX移植機(jī)智自動(dòng)生成代碼

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

    機(jī)智智家APP的設(shè)備掃描與綁定限制

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

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

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

    機(jī)智開(kāi)源自動(dòng)化控制篇-接近報(bào)警系統(tǒng)

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

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

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

    機(jī)智開(kāi)源自動(dòng)化控制篇:溫濕度報(bào)警器

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

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

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

    請(qǐng)問(wèn)Matter Android APP是否支持連接市面上的Matter設(shè)備?

    各位大佬們,請(qǐng)教下我基于matter開(kāi)源Android App,是否可以連接市面上其他的matter協(xié)議設(shè)備并且進(jìn)行控制呢?如果不可以,是需要其他認(rèn)證碼?
    發(fā)表于 07-24 07:25
    主站蜘蛛池模板: 亚洲最大成人网色 | 国产人成精品香港三级古代 | 亚洲码欧美码一区二区三区 | 一区二区三区精品视频 | 自拍中文字幕 | 在线看片成人免费视频 | 91夫妻视频| 三级黄网站 | 97久久天天综合色天天综合色hd | 亚洲高清不卡视频 | 日本www色视频 | 久久综合九色综合欧洲 | 免费看黄色网页 | 色网站在线 | 热99视频 | 男女交性无遮挡免费视频 | 天天爱夜夜爽 | 五月丁香六月综合缴清无码 | 欧美狠狠 | 男女同床爽爽视频免费 | 国产99色| 一区二区三区四区在线免费观看 | videossexotv极度另类高清 | 成人国产一区二区三区 | 五月激情电影 | 四虎4hu | 一区二区三区四区无限乱码在线观看 | 你懂的网站在线 | 日产乱码免费一卡二卡在线 | 欧美午夜在线视频 | 深夜动态福利gif动态进 | 7086bt伙计 福利一区 | 大色综合色综合网站 | 午夜激情小视频 | 亚洲黄色高清视频 | 国产高清区 | 久久riav国产精品 | 91av成人| 久久亚洲综合色 | 色播图片 | 九九九精品视频免费 |