大约有 300 项符合查询结果(耗时:0.0042秒) [XML]

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

Arduino101(Genuino 101)&App Inventor – RGB LED控制 - 创客硬件开...

... 本文將介紹如何取得觸碰點的 RGB 參數之後透過 BLE 送給 Arduino 101 來點亮 RGB LED。 App InventorDesigner使用 Canvas 來取得觸碰點座標。兩個連線斷線用的按鈕:Btn_Connect /  Btn_DisConnect三個用來呈現RGB值的 Slider (無法拖動)BletoothL...
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...
https://bbs.tsingfun.com/thread-1163-1-1.html 

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

...服务端组件的使用;   2.学会编写手机蓝牙APP,并向Arduino发送控制指令;   3.学会编写手机语音控制程序,并能通过语音控制Arduino等设备。  【项目范例】   1. 情境   通过对APPInventor和Arduino的学习,我们对两个...
https://bbs.tsingfun.com/thread-1621-1-1.html 

Arduino控制RGB三色LED灯实验、程序代码、连线图、仿真 - 创客硬件开发 - ...

...占空比:高电平与低电平持续时间之比。 硬件电路连接Arduino引脚RGB LED(共阴极)D11RD10BD9GGNDGND 所需器件名称数量电阻3RGB LED灯1Arduino UNO开发板1 控制代码 /*运行环境:Arduino 1.8.19*/ #define GREEN 9 #define BLUE 10 #define RED 11 int redValu...
https://bbs.tsingfun.com/thread-1792-1-1.html 

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

...本输入框 2.程序逻辑 增加接收处理和显示判断 3.arduino nano代码 // 引脚定义 const int ledPin1 =  5;// the number of the LED pin const int ledPin2 =  6; const int ledPin3 =  3; const int bluePin =  6;// the number of the LED ...
https://bbs.tsingfun.com/thread-1794-1-1.html 

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

...流程,增加了列表处理,可以参考代码处理逻辑流程 3.arduino nano代码,温度和电位计使用随机数生成 // 引脚定义 const int ledPin1 =  5;// the number of the LED pin const int ledPin2 =  6; const int ledPin3 =  3; const int bluePin ...
https://bbs.tsingfun.com/thread-1767-1-1.html 

APP INVENTOR硬件交互学习教程02——资源介绍 - 创客硬件开发 - 清泛IT社区...

1.主控使用创客常用的arduino nano,程序下载方便,扩展库很多。 2.板子集成3路独立LED,可以单独控制 3.板子集成RGB LED,可以单独控制 4.一路可调电位计,可以进行AD实验 5.板子集成红外发射和接收,方便进行红外...
https://bbs.tsingfun.com/thread-1775-1-1.html 

【活动取消】App Inventor 2 中文网学习合作计划,快速提升你的App Invento...

...! 活动报名截止时间:2024年7月3日。 小飞侠报名arduino小能手报名思路不错,支持,报名@mzb2012 @逍遥虎 @chenweigang 很遗憾地通知大家,由于活动报名人数不足,本次活动正式取消,感谢大家的支持!已报名者每人奖励100小...
https://bbs.tsingfun.com/thread-705-1-1.html 

stdbool.h C99标准杂谈 - c++1y / stl - 清泛IT社区,为创新赋能!

include <stdbool.h> 找不到头文件??? bool 是C++中的关键字,C中不支持 所以C99标准中引入了头文件 stdbool.h,包含了四个用于布尔型的预定义宏: #define true 1 #define false 0 #define bool _Bool typdef int _Bool 但是很遗憾,Visual C++...
https://bbs.tsingfun.com/thread-567-1-1.html 

ThreadXxx.h:100: error: ‘pthread_t’ was not declared in this scope -...

pthread_t在头文件/usr/include/bits/pthreadtypes.h中定义:typedef unsigned long int pthread_t;复制代码它是一个线程的标识符。 #include <pthread.h>   解决。