久久久久久亚洲精品中文字幕,无码超乳爆乳中文字幕久久,美女扣自己小穴视屏网站,手机在线不卡二区中文字幕

返回舊版
當(dāng)前位置:
首頁(yè)
>
技術(shù)支持
Product user manual

產(chǎn)品使用手冊(cè)

F493X 安卓廣播接口

2022-11-10 09:31:56
  1. 旋轉(zhuǎn)屏幕廣播

系統(tǒng)消息: android.intent.action.rotate_screen

參數(shù): rotation 0 、90 、180 、270

示例代碼:

Intent intent=new Intent();

intent.setAction("android.intent.action.rotate_screen");

intent.putExtra("rotation","90");

sendBroadcast(intent);

  1. 定時(shí)開關(guān)機(jī)廣播

系統(tǒng)消息: android.intent.action.auto_power_shut

參數(shù):

effective boolean

定時(shí)開關(guān)機(jī)/重啟功能 默認(rèn)值為flase 需要應(yīng)用程序傳遞參數(shù)

true啟用此功能 false關(guān)閉此功能

power_type int

默認(rèn)值為3 需要應(yīng)用程序傳遞參數(shù)

1 馬上重啟 2 馬上關(guān)機(jī) 3 定時(shí)開關(guān)機(jī) 4 定時(shí)重啟 5 定時(shí)開關(guān)機(jī)(重啟)

wday int

代表的是星期幾之和

默認(rèn)值為127 即1+2+4+8+16+32+64 ,需要應(yīng)用程序傳遞參數(shù)

reboot int

定時(shí)重啟 默認(rèn)值為0,不需要應(yīng)用程序傳遞參數(shù)

代表定時(shí)重啟 1 啟用此功能 0 關(guān)閉此功能

flag int

定時(shí)關(guān)機(jī) 默認(rèn)值為0,不需要應(yīng)用程序傳遞參數(shù)

星期日 星期一 星期二 星期三 星期四 星期五 星期六

tm_wday 0 1 2 3 4 5 6

wday 1 2 4 8 16 32 64

比如選中周日和周四,則wday=1+16 =17

獲取星期幾的方法:

(wday>>tm_wday)&1 等于1表示當(dāng)天有選中,等于0表示沒有選中。

例如:

((17>>4)&1) ==1 表示周四有選中

((17>>3)&1) == 0 表示周三沒有被選中

shutdown_time 關(guān)機(jī)時(shí)間,格式為 00:00:00

poweron_time 開機(jī)時(shí)間,格式為 00:00:00

reboot_time 重啟時(shí)間,格式為 00:00:00

示例代碼://F4932

Intent it = new Intent();

it.setAction("android.intent.action.auto_power_shut");

it.putExtra("effective",true);

it.putExtra("power_type",3);

it.putExtra("wday",127);

it.putExtra("shut_time",”07:10”);

it.putExtra("power_time",”20:00”);

sendBroadcast(it);

//F4932R1Q

Intent it = new Intent();

it.setAction("android.allwinner.intent.action.setpoweronoff");

it.putExtra("enable",true);

it.putExtra("power_type",3);

it.putExtra("wday",127);

it.putExtra("timeoff",”07:10”);

it.putExtra("timeon",”20:00”);

sendBroadcast(it);

  1. 顯示/隱藏導(dǎo)航欄

系統(tǒng)消息: android.intent.action.hidenavigation

參數(shù):

enable true 隱藏狀態(tài)欄和導(dǎo)航欄 false 顯示導(dǎo)航欄和狀態(tài)欄

示例代碼:

Intent intent=new Intent();

intent.setAction("android.intent.action.hidenavigation ");

intent.putExtra("enable",value ? "1" : "0");

sendBroadcast(intent);

4、系統(tǒng)消息: android.intent.action.installslient

參數(shù):

uri apk安裝包所在的路徑

示例代碼:

Intent intent=new Intent();

intent.setAction("android.intent.action.installslient");

intent.putExtra("uri","/sdcard/myserial.apk");

intent.putExtra("component","android_serialport_api.sample/.MainMenu"); sendBroadcast(intent);

5、mode鍵廣播

設(shè)備mode鍵左右撥動(dòng)時(shí)會(huì)發(fā)出系統(tǒng)廣播如下消息:

Intent intent=new Intent();

intent.setAction("android.intent.action.ENG_MODE_SWITCH");

intent.putExtra("state",0); //往右撥動(dòng)發(fā)state為0

//intent.putExtra("state",1); //往左撥動(dòng)發(fā)state為1

sendBroadcast(intent);

6、系統(tǒng)升級(jí)廣播

設(shè)備發(fā)廣播升級(jí)系統(tǒng)功能

Intent it = new Intent();

it.setAction("com.mobilepower.terminal.upgrade");

it.putExtra("upgradePath","/sdcard/update.zip");//要升級(jí)的文件路徑

sendBroadcast(intent);

7、設(shè)備重啟廣播

Intent it = new Intent();

it.setAction("com.fourfaith.reboot");

sendBroadcast(it);

8、OTA在線下載升級(jí)廣播

a、從FF自有平臺(tái)上獲取url鏈接進(jìn)行下載。

Intent intent = new Intent();

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

intent.setAction("com.FF.ota.update");

sendBroadcast(intent);

b、根據(jù)客戶發(fā)送的url鏈接進(jìn)行下載。

Intent intent = new Intent();

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

intent.putExtra("url","http://119.3.75.95:28080/v1/Standard/V1.0_20210106.zip");//隨參url,直接傳入下載地址

intent.setAction("com.FF.ota.update.url");

sendBroadcast(intent);

c、服務(wù)器獲取url變更接口

Intent intent = new Intent();

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.putExtra("server","http://119.3.75.95:21822/v1");//隨參變更服務(wù)器server

intent.setAction("com.FF.ota.update.server");

MainActivity.this.sendBroadcast(intent);

完整服務(wù)器url實(shí)例

http://119.3.75.95:21822/v1/checkUpgrade?sn=cbc6915ec20f8efd&version=V2.0_20210107&model=F4932-R1Q_A5_Standard_HDMI&time=202101081610

附件下載

  • 名稱
  • 日期
  • 下載

提交工單

  • 描述內(nèi)容越詳細(xì),越有利于快速處理問題!
  • (帶* 必填項(xiàng))

業(yè)務(wù)咨詢

  • (帶* 必填項(xiàng))
青青草黄色电影| wwW美女鸡巴| 国产高清国产精品国产k| 91香蕉在线看私人影院| 99久久久精品国产美女| 中文字幕在线亚洲日韩页| 锁住阴茎的最小嫩屄AV| 鸡巴插肉穴寝室动漫视频| 西欧大屌干女人大逼视频| 136福利视频网站导航| 男人和女人靠逼网站免费| 日日日天天射天天干视频| 黄色视频484插插黄片| 日韩精品一区二区三区四区| 美女动漫被搞被搞18禁| 亚洲不卡一区二区三区在线| 请播放国内淫乱性交视频| 残疾人无码一区二区三区| 中文字幕日本熟女第一页| 超91精品手机国产在线| 熟女自慰30P| 美女c操逼网站| 国产乱人伦av在线al| 女人大胆张开荫道口电影| 懂色av中文一区二区三区| 黑人用阴茎捅女人的屁股| 运动男生鸡巴大视频下载| 一区二区一本久久精品生活| 免费看美女网红操逼免费| 中文文精品字幕一区二区| 俄罗斯美女操逼黄片视频| 亚洲资源站av无码网址| 日本浪琴比国内便宜多少| 白丝美女操大逼| 手机亚洲第一页| 成人家庭影院操美女鸡巴| 大学生A级毛片免费视频| 国产精品九九久久久久久久| 成人女人性毛片免费视频| 黑人上司与人妻中文字幕| 2021最新四虎永久免费|