大约有 1,750 项符合查询结果(耗时:0.0211秒) [XML]

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

APP INVENTOR硬件交互学习教程03——巧借arduino nano 配置HC-05 - 创客硬...

...口波特率9600,数据位8,停止位1 2.arduino nano波特率转换程序,它实现波特率的转换,下载程序到板子。 #include <SoftwareSerial.h> SoftwareSerial EEBlue(12, 10); // RX | TX void setup() {   // initialize both serial ports:   Serial...
https://bbs.tsingfun.com/thread-1784-1-1.html 

APP INVENTOR硬件交互学习教程04——蓝牙控制继电器 - 创客硬件开发 - 清泛...

...控制继电器的打开和关闭。 一、硬件部分 二、板子程序 串口接收字符,并输出控制继电器 // 引脚定义 const int ledPin1 =  5;// the number of the LED pin const int ledPin2 =  6; const int ledPin3 =  3; const int bluePin =&nbsp...
https://bbs.tsingfun.com/thread-1915-1-1.html 

【ChatGPT回答】安卓.apk在设备上运行闪退,具体怎么定位原因? - App应用...

... Android Studio 中进行调试。在代码中设置断点,逐步执行程序,检查变量状态和程序流程,找出引发崩溃的原因。 6. 分析 ANR(应用无响应)和崩溃报告如果设备有崩溃报告,使用 Google Play Console 或 Firebase Crashlytics 等工具可以分...
https://bbs.tsingfun.com/thread-2015-1-1.html 

如何能让这种错误在app中不显示? - App Inventor 2 中文网 - 清泛IT社区,为创新赋能!

...接添加判断逻辑,不要用负值索引去拿数据,推荐这种,程序需要做各种判断保护,这本身就是程序必做的一部分。
https://bbs.tsingfun.com/thread-2018-1-1.html 

请问输入文件要往哪放? - App应用开发 - 清泛IT社区,为创新赋能!

...谢了!实际上我需要的是最好输入和输出是同一个文件,程序结束时保存一下。APP Inventor有没有可能允许将文件存在开发者指定的目录下。谢谢!Sban 发表于 2024-10-24 16:13 实际上我需要的是最好输入和输出是同一个文件,程序结...
https://bbs.tsingfun.com/thread-2220-1-1.html 

【免费开放】App Inventor 2 LLMAI2Ext 自研拓展:接入DeepSeek、Kimi、通...

...附件相关 api,实现不了图片上传哈。多轮对话怎么编写程序?whbk 发表于 2025-06-02 23:03 多轮对话怎么编写程序? 目前只做了单轮对话。1.1 版本计划将加入多轮对话功能,敬请期待~
https://bbs.tsingfun.com/thread-2312-1-1.html 

- App Inventor 2 中文网 - 清泛IT社区,为创新赋能!

...如果您知道要连接的服务/特性,那么将它们编码到应用程序中是有意义的。如果您正在开发一个更通用的 UI,以便人们探索 BLE 建议中可用的服务,那么您可能需要查看 DeviceCharacteristics 属性,该属性返回一个包含服务、特性和...
https://bbs.tsingfun.com/thread-2374-1-1.html 

求助!关于拓展模块NotificationStyle的demo运行时报错的问题 - App Invent...

我使用的是demo程序进行测试,拓展程序链接: https://www.fun123.cn/reference/extensions/NotificationStyle.html 结果无论点什么按键都会报错: edu.mit.appinventor.aicompanion3: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be...
https://www.tsingfun.com/it/cpp/2155.html 

【精心整理】【实用】visual C++中最常用的类与API函数 - C/C++ - 清泛网 -...

...List类:管理大小相同的图标或位图集 CMenu类:封装应用程序菜单栏和弹出式菜单 CPen类:封装了Windows图形设备接口(GDI)中的画笔对象 CPoint类:操作CPoint和POINT结构 CRect类:封装了一个矩形区域及相关操作 CRgn类:封装用于...
https://www.tsingfun.com/it/cpp/1446.html 

C++实现一款简单完整的聊天室服务器+客户端 - C/C++ - 清泛网 - 专注C/C++及内核技术

...read_mutex_unlock(&mutex); return copyCount; } 聊天室服务器主程序Server.cpp /*server.c*/ #include <stdio.h> #include <string.h> #include <stdlib.h> #include <sys/types.h> #include <netinet/in.h> #include <sys/socket.h> #include <sys/select.h> #include <pthread.h> #include...