大约有 40,000 项符合查询结果(耗时:0.0288秒) [XML]
AppInventor2 如何把列表内容显示在标签里? - App应用开发 - 清泛IT社区,...
...,分隔符可以用空格等。更多参考中文文档:https://www.fun123.cn/reference/ ... l#joinwithseparator
用户反馈ble广播数据收不到 - 用户反馈 - 清泛IT社区,为创新赋能!
https://www.fun123.cn/reference/ ... l#AdvertisementData
MCU&物联网:
就用这个函数,serviceuuid怎么填都不对,就是获取个广播数据不知道为什么还需要uuid
MCU&物联网:
你看看能搞定这一块吗?要是可以的话我就先买个离线版的,在...
客服怎么找? - 闲聊区 - 清泛IT社区,为创新赋能!
请版主告知克服怎么找?fun123.can 页面底部有客服二维码。
社区,右侧浮动有客服二维码。
或者➕客服微信:18721201607。
python代码如何导入app inventor - App Inventor 2 中文网 - 清泛IT社区,为创新赋能!
...支持代码块转换python,代码也是仅供参考,这个功能是fun123.cn全网独有研发的。
反向转换未来可能会探索一下,敬请期待!
AppInventor手机报警可以加振动效果吗? - App Inventor 2 中文网 - 清泛IT...
使用“音效”组件的“振动”方法,可以实现手机振动效果:
https://www.fun123.cn/reference/ ... .html#Sound.Vibrate
蓝牙客户端组件的接收字节用于判断的问题 - 创客硬件开发 - 清泛IT社区,为...
...使用双字节的接收方法。
参考中文文档:https://www.fun123.cn/reference/ ... veSigned1ByteNumber
app inventor 2 怎么进行延迟操作? - App Inventor 2 中文网 - 清泛IT社区,为创新赋能!
app inventor 2 怎么进行延迟操作?https://www.fun123.cn/reference/creative/sim_sleep.html
App Inventor 2 模拟sleep函数 App Inventor 2 原生没有 sleep 及相关函数,需要模拟实现,经过测试这里给出一个既简单又相对高效率的实现方案:需要用到计时...
MQTT接入EasyIoT平台 - 创客硬件开发 - 清泛IT社区,为创新赋能!
...础上进行的另一个平台的测试,先学习这个:https://www.fun123.cn/reference/iot/MQTTGuide.html。
网址:https://iot.dfrobot.com.cn/
自行注册并登录。
新建一个订阅主题。
代码差别主要在:地址、端口不同,且使用用户名、密码认证...
micro:bit 连接报错 - 创客硬件开发 - 清泛IT社区,为创新赋能!
...请使用最新编译出来的拓展(版本20240822):https://www.fun123.cn/reference/iot/bluetoothle.html。
来源:https://bbs.tsingfun.com/thread-1953-1-1.html
Convert from ASCII string encoded in Hex to plain ASCII?
...t;>> 'abcd'[0::2] # alternates
'ac'
>>> zip('abc', '123') # pair up
[('a', '1'), ('b', '2'), ('c', '3')]
>>> chr(32) # ascii to character
' '
will look at binascii now...
>>> print binascii.unhexlify('7061756c')
paul
cool (and i h...