大约有 2,000 项符合查询结果(耗时:0.0102秒) [XML]

https://bbs.tsingfun.com/thread-1792-1-1.html 

APP INVENTOR硬件交互学习教程06——硬件参数上报 - 创客硬件开发 - 清泛IT...

本节主要实现硬件参数上报,板子接收到指令,执行后反馈一个状态给APP。 1.界面组件 增加两个标签,一个布局,一个文本输入框 2.程序逻辑 增加接收处理和显示判断 3.arduino nano代码 // 引脚定义 const int ledPin1 = &...
https://bbs.tsingfun.com/thread-1794-1-1.html 

APP INVENTOR硬件交互学习教程07——多个参数上报 - 创客硬件开发 - 清泛IT...

这一节介绍实现多个参数上传,在上一节基础上增加温度参数和电位计参数 1.界面设计 增加两组参数,还是使用水平布局 2.逻辑设计 修改定时任务里的处理流程,增加了列表处理,可以参考代码处理逻辑流程 3.arduino nano...
https://bbs.tsingfun.com/thread-1796-1-1.html 

APP INVENTOR硬件交互学习教程08——增加语音播报 - 创客硬件开发 - 清泛IT...

这一节介绍增加语音播报功能,需要增加一个复选框和一个文本朗读器组件。 1.界面设计 2.程序设计 断电模式可以保存,复选框配置模式
https://bbs.tsingfun.com/thread-1800-1-1.html 

APP INVENTOR硬件交互学习教程09——增加人机交互提示 - 创客硬件开发 - 清...

这一节,实现增加人机交互提示;蓝牙未开启情况下,打开APP会有提示弹窗,应用程序正在开启蓝牙,是否允许 蓝牙未连接情况下,发送命令给下位机提示弹窗,请先连接蓝牙 1.界面设计 增加activity 活动控件和对话框控件...
https://bbs.tsingfun.com/thread-1811-1-1.html 

APP INVENTOR硬件交互学习教程10——多个虚拟界面实现 - 创客硬件开发 - 清...

本帖最后由 mzb2012 于 2024-07-10 11:47 编辑 通过配置垂直布局实现两个虚拟界面切换。 1.界面设计 增加了两个垂直布局,作为界面1和界面2的容器存放每个页面的内容;增加导航布局,水平布局增加两个按钮,用于切面切换。 ...
https://bbs.tsingfun.com/thread-1834-1-1.html 

APP INVENTOR硬件交互学习教程11——滑条控制舵机 - 创客硬件开发 - 清泛IT...

这节我们通过滑条控件控制舵机动作。 1.界面设计 增加滑条控件和标签控件,滑条控制舵机动作,标签显示滑条数值。 2.逻辑设计 增加当滑条改变时,显示和发送指令给下位机 3.工程参考
https://bbs.tsingfun.com/thread-1844-1-1.html 

BLE &APP交互学习教程01——下发指令 - 创客硬件开发 - 清泛IT社区,为创新赋能!

BLE模块性价比高,无需配对就可以连接使用,从本节开始,我们着重来学习使用BLE控制和显示。 1.界面设计 2.逻辑设计 3.APP工程 4.下位机工程 {:8_381:}
https://bbs.tsingfun.com/thread-1990-1-1.html 

BLE &APP交互学习教程02——接收指令 - 创客硬件开发 - 清泛IT社区,为创新赋能!

BLE模块性价比高,无需配对就可以连接使用,本节开始,我们来学习使用BLE接收并显示。1.界面设计 2.逻辑设计 3.APP工程 4.小结 BLE模块的发送和接收短接,APP发送来的数据模块接收后显示在输入框内。
https://stackoverflow.com/ques... 

How do I get the APK of an installed app without root access?

... apk for a given package. To do this from the command line, use adb shell pm list packages to get the list of installed packages and find the desired package. With the package name, we can get the actual file name and location of the APK using adb shell pm path your-package-name. And knowing the ...
https://stackoverflow.com/ques... 

Why not infer template parameter from constructor?

...uppose you are using your class like this : MyClass m(string s); MyClass *pm; *pm = m; I am not sure if it would be so obvious for the parser to know what template type is the MyClass pm; Not sure if what I said make sense but feel free to add some comment, that's an interesting question. C++ 1...