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

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

App Inventor 2 手机蓝牙及语音控制 - App Inventor 2 中文网 - 清泛IT论坛,有思想、有深度

...huangke/13.htm【学习目标】   1.掌握蓝牙客户端或服务端组件的使用;   2.学会编写手机蓝牙APP,并向Arduino发送控制指令;   3.学会编写手机语音控制程序,并能通过语音控制Arduino等设备。  【项目范例】   1. 情境...
https://www.tsingfun.com/it/ai... 

【持续更新】App Inventor 2 中文拓展一览 - App Inventor 2 中文网 - 清泛...

...ersion 拓展 【动态创建】DynamicComponents 拓展:动态创建AI2组件对象 【Hash】文件Hash值拓展:sha256、sha512 哈希 【向量计算】VectorArithmetic 拓展:计算两个向量相加的结果向量 【手机管理】App Inventor 2 TaifunTM 拓展:获取本机手机...
https://www.fun123.cn/referenc... 

App Inventor 2 拓展参考文档 · App Inventor 2 中文网

...rsion 拓展 【动态创建】DynamicComponents 拓展:动态创建AI2组件对象 【Hash】文件Hash值拓展:sha256、sha512 哈希 【向量计算】VectorArithmetic 拓展:计算两个向量相加的结果向量 【手机管理】App Inventor 2 TaifunTM 拓展:获取本机手...
https://bbs.tsingfun.com/thread-2216-1-1.html 

在APP Inventor的BLE组件使用RequestMTU方法之后,发送的字符数依旧限制在2...

目前APP是能连接上蓝牙,也能传输数据,但是发送和接受的数据都是20字节的分包。使用BLE调试宝,在里面修改MTU,返回的值是512,并且是修改成功的,但是在编程中使用RequestMTU方式设置512,,并且读取返回值也是512,然后调用...
https://bbs.tsingfun.com/thread-1380-1-1.html 

BLE(一)概述&工作流程&常见问题 - 创客硬件开发 - 清泛IT社区,...

文章源自:https://www.gandalf.site/2018/11/ble.html 0x1 BLE概述“蓝牙”,即Bluetooth,是斯堪的纳维亚语中 Blåtand / Blåtann 的英化版本。该词是十世纪的一位国王Harald Bluetooth的绰号,相传他将纷争不断的丹麦部落统一为一个王国,并引...
https://www.fun123.cn/aia-store/ 

App Inventor 2 源码商店

... 教学及学习用,主要涉及绘图动画相关组件的使用。 作者: ...
https://bbs.tsingfun.com/thread-2730-1-1.html 

【iOS】有关苹果iOS App的一些进展、BluetoothLE蓝牙拓展等 - App Inventor...

...iOS由于苹果限制,不能像Android那样使用拓展,只能内置组件适配比如ble功能,经典蓝牙不支持。 我们正在努力将 BluetoothLE 扩展程序移植到 iOS 平台,使其成为一个组件。由于 Apple 对应用程序的限制,我们无法像在 Android 上那样...
https://bbs.tsingfun.com/thread-1560-1-1.html 

BLE 模块 透传问题 - 创客硬件开发 - 清泛IT社区,为创新赋能!

...列表(多字节集合) 传文件,需要先用“文件管理器”组件,将文件内容读出来,然后调用 ble 的写方法。感谢老师引用: App Inventor 2  发表于 2024-03-31 16:53 传文件,需要先用“文件管理器”组件,将文件内容读出来,然...
https://stackoverflow.com/ques... 

Is there a way to get rid of accents and convert a whole string to regular letters?

... Tests on my HW with 32bit JDK show that this performs conversion from àèéľšťč89FDČ to aeelstc89FDC 1 million times in ~100ms while Normalizer way makes it in 3.7s (37x slower). In case your needs are around performance and you know the input range, this may be for you. Enjoy :-) ...
https://stackoverflow.com/ques... 

What is the best way to remove accents (normalize) in a Python unicode string?

...'', text) return text result: text_to_id("Montréal, über, 12.89, Mère, Françoise, noël, 889") >>> 'montreal_uber_1289_mere_francoise_noel_889' share | improve this answer ...