返回
摘要: DHT11温湿度传感器 这个模块应用很简单,因为有库文件 ^-^ (这就是封装的好处) 库文件下载地址(DHT-sensor-library): https://github.com/adafruit/DHT-sensor-library 该库支持DHT11、DHT22等模块。 实物如图: 简单的三 阅读全文
posted @ 2017-12-17 19:01 feige_hunter 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 介绍: 使用SPI通讯可将3个数字口扩展为8个数字口。当Arduino数字口不够用时,使用这个模块扩展是个理想的选择。并且可同时以级联多个模块,也适用于51、AVR、PIC等单片机。 技术规格 电压:5V 输入接口:IDC6 输出接口:IDC6 模块尺寸:41×22mm 阅读全文
posted @ 2017-12-17 16:23 feige_hunter 阅读(490) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include // IRremote库声明 #include //ProtoThreads必须包含的头文件 #include #include #include #include #define PT_USE_TIMER #define PT_USE_SEM Servo myservo; Li... 阅读全文
posted @ 2017-12-16 20:52 feige_hunter 阅读(616) 评论(0) 推荐(0) 编辑
摘要: 1.直接与Arduino相连 2.通过转接板利用I2C的方式与Arduino相连 1. 直接与Arduino相连 直接与Arduino相连的好处是不用现另外购买转接板,但这样造成的后果就是要大量占用Arduino的IO口。如果你的项目外接的传感器不多,那还好,但如果你需要外接很多个传感器或者其他配件 阅读全文
posted @ 2017-12-16 18:09 feige_hunter 阅读(1862) 评论(0) 推荐(0) 编辑
摘要: download at https://code.angularjs.org/ 阅读全文
posted @ 2017-11-19 11:44 feige_hunter 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-11-11 23:41 feige_hunter 阅读(97) 评论(0) 推荐(0) 编辑
摘要: /* *遥控程序 */ #include <IRremote.h> // IRremote库声明 int input1 = 9; // 定义uno的pin 5 向 input1 输出 int input2 = 10; // 定义uno的pin 6 向 input2 输出 int input3 = 5 阅读全文
posted @ 2017-11-11 11:06 feige_hunter 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 最近测通了很多传感器,记录个整理的简单案例代码: /* *遥控程序 */ #include <IRremote.h> // IRremote库声明 int RECV_PIN = 3; //定义红外接收器的引脚为11 int buzzer = 7; //设置控制蜂鸣器的数字IO脚 IRrecv irr 阅读全文
posted @ 2017-10-29 00:58 feige_hunter 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1. 工作电压 :3.3V或5V 2. 工作电流 :<1mA 3. 工作温度范围:-10℃~+70℃ 4. 接口类型:模拟信号输出 5. 尺寸大小:30mm x 23mm 6. 重量大小:5g 7.引脚定义:S信号输出、+电源(VCC)、-地(GND) 8.Input:压电陶瓷片的正极 9.Gnd: 阅读全文
posted @ 2017-10-28 21:09 feige_hunter 阅读(1010) 评论(0) 推荐(0) 编辑
摘要: 注意:使用的是数字输出,不是模拟量输出 VCC 对应电路板上的Power supply,vin的电压是5V也可以使用 程序: 阅读全文
posted @ 2017-10-28 18:20 feige_hunter 阅读(1784) 评论(0) 推荐(0) 编辑