“(SKU:RB-02S061)Force Sensitive Resistor -Square”的版本间的差异
来自ALSROBOT WiKi
(以“<br/> 右 ==产品概述== Force Sensing Resistor是著名Interlink Electronics公司生产的一款重量轻,体积小,感...”为内容创建页面) |
(→规格参数) |
||
(未显示1个用户的3个中间版本) | |||
第7行: | 第7行: | ||
# 总宽度: 1.75" | # 总宽度: 1.75" | ||
# 检测范围: 1.75x1.5" | # 检测范围: 1.75x1.5" | ||
+ | |||
==使用方法== | ==使用方法== | ||
+ | ===连接示意图=== | ||
[[文件:Large_FSR_Arduino_Hookup-400x241.jpg|500px|有框|居中]] | [[文件:Large_FSR_Arduino_Hookup-400x241.jpg|500px|有框|居中]] | ||
− | == | + | ===例子程序=== |
− | <pre style='color:blue'>/***************************************************************** | + | <pre style='color:blue'> |
+ | /***************************************************************** | ||
机器人基地 RobotBase www.robotbase.cn | 机器人基地 RobotBase www.robotbase.cn | ||
目 的: 压力传感器测试程序 | 目 的: 压力传感器测试程序 | ||
第28行: | 第31行: | ||
Serial.println(FSRReading); | Serial.println(FSRReading); | ||
delay(250); | delay(250); | ||
− | }</pre> | + | } |
− | + | </pre> | |
− | + | ===程序效果=== | |
− | == | + | 打开Arduino IDE串口监视器,通过串口窗口,可以看见随着压力的变化传感器数值也在变化,从而可以判断压力大小的变化。 |
− | + | ==产品相关推荐== | |
+ | [[文件:erweima.png|230px|无框|右]] | ||
+ | ===产品购买地址=== | ||
+ | [http://www.alsrobot.cn/goods-405.html Force Sensitive Resistor -Square]<br/> | ||
+ | ===周边产品推荐=== | ||
+ | [http://www.alsrobot.cn/goods-405.html Arduino FSR402 0.5" 压力传感器]<br/> | ||
+ | [http://www.alsrobot.cn/goods-180.html FSR400 压力感应电阻 压力传感器 力敏电阻 Sparkfun原装进口全新]<br/> | ||
+ | ===相关问题解答=== | ||
+ | [http://www.makerspace.cn/forum.php?mod=viewthread&tid=225&highlight=fsr 基于FSR402压力传感器与Arduino GSM模块的家庭安保器]<br/> | ||
+ | ===相关学习资料=== | ||
+ | [http://www.sparkfun.com/datasheets/Sensors/Pressure/fsrguide.pdf FSR Integration Guide ]<br/> | ||
+ | [http://bildr.org/2012/11/force-sensitive-resistor-arduino/ Bildr Tutorial ]<br/> | ||
+ | [http://www.makerspace.cn/portal.php 奥松机器人技术论坛]<br/> |
2016年1月7日 (四) 14:41的最后版本
目录 |
产品概述
Force Sensing Resistor是著名Interlink Electronics公司生产的一款重量轻,体积小,感测精度高,超薄型电阻式压力传感器。这款压力传感器是将施加在FSR传感器薄膜区域的压力转换成电阻值的变化,从而获得压力信息。压力越大,电阻越低。其允许用在压力0g-10kg的场合。可用于机械夹持器末端感测有无夹持物品,仿生机器人足下地面感测,哺乳类动物咬力测试生物实验,应用范围及其广泛。但是由于压力检测不是非常精确,因此不建议使用需要精确检测压力的场合。
规格参数
- 总长度: 3.5"
- 总宽度: 1.75"
- 检测范围: 1.75x1.5"
使用方法
连接示意图
例子程序
/***************************************************************** 机器人基地 RobotBase www.robotbase.cn 目 的: 压力传感器测试程序 目标系统: Carduino UNO R3 控制器 应用软件: Arduino IDE 1.0.5 发布时间: 2015-1-23 说 明: 若用于商业用途,请保留此段文字或注明代码来源 哈尔滨奥松机器人科技有限公司保留所有版权 *****************************************************************/ void setup() { Serial.begin(9600); } void loop() { int FSRReading = analogRead(FSR_Pin); Serial.println(FSRReading); delay(250); }
程序效果
打开Arduino IDE串口监视器,通过串口窗口,可以看见随着压力的变化传感器数值也在变化,从而可以判断压力大小的变化。
产品相关推荐
产品购买地址
Force Sensitive Resistor -Square
周边产品推荐
Arduino FSR402 0.5" 压力传感器
FSR400 压力感应电阻 压力传感器 力敏电阻 Sparkfun原装进口全新
相关问题解答
基于FSR402压力传感器与Arduino GSM模块的家庭安保器