图片仅供参考

详细数据请看参考数据手册

Datasheet下载
  • 型号: 27800
  • 制造商: Parallax
  • 库位|库存: xxxx|xxxx
  • 要求:
数量阶梯 香港交货 国内含税
+xxxx $xxxx ¥xxxx

查看当月历史价格

查看今年历史价格

27800产品简介:

ICGOO电子元器件商城为您提供27800由Parallax设计生产,在icgoo商城现货销售,并且可以通过原厂、代理商等渠道进行代购。 27800价格参考。Parallax27800封装/规格:导航开关,操纵杆, 操纵杆,2 - 轴 模拟(电阻式) Output。您可以下载27800参考资料、Datasheet数据手册功能说明书,资料中有27800 详细功能的应用电路图电压和使用方法及教程。

产品参数 图文手册 常见问题
参数 数值
产品目录

电位计,可变电阻器

描述

2-AXIS JOYSTICK输入设备 2-Axis JoyStick

产品分类

操纵杆电位计

品牌

Parallax

产品手册

点击此处下载产品Datasheet

产品图片

rohs

符合RoHS无铅 / 符合限制有害物质指令(RoHS)规范要求

产品系列

输入设备,Parallax 27800-

mouser_ship_limit

该产品可能需要其他文件才能进口到中国。

数据手册

点击此处下载产品Datasheet点击此处下载产品Datasheet

产品型号

27800

产品种类

输入设备

其它名称

Q5761502

功率(W)

0.01W

包装

散装

单位重量

14.790 g

商标

Parallax

安装类型

通孔

容差

-

封装/外壳

方形 - 1.202" 长 x 1.091" 宽 x 1.641" 高(30.54mm x 27.70mm x 41.67mm)

旋转角度

-

标准包装

1

电阻(Ω)

10k

调节类型

顶部调节

27800 相关产品

CS41001E

品牌:C&K

价格:

TSAA1S00A

品牌:APEM Inc.

价格:

S30L081P

品牌:APEM Inc.

价格:¥1153.00-¥1610.58

JS1300AQ

品牌:E-Switch

价格:

HFX44S10

品牌:APEM Inc.

价格:

SN101SN

品牌:APEM Inc.

价格:¥1012.90-¥1192.50

27808

品牌:Parallax Inc.

价格:

04J-BS-T01

品牌:Grayhill Inc.

价格:

PDF Datasheet 数据手册内容提取

Web Site: www.parallax.com Office: (916) 624-8333 Forums: forums.parallax.com Fax: (916) 624-8003 Sales: sales@parallax.com Sales: (888) 512-1024 Technical: support@parallax.com Tech Support: (888) 997-8267 2-Axis Joystick (#27800) The 2-Axis Joystick can be used to add analog input to your next project. The 2-Axis Joystick contains two independent potentiometers (one per axis) that can be used as dual adjustable voltage dividers, providing 2-Axis analog input in a control stick form. The modular form-factor allows you to plug the 2-Axis Joystick directly into a breadboard for easy prototyping. The 2-Axis Joystick includes spring auto- return to center and a comfortable cup-type knob which gives the feel of a thumb-stick. Features (cid:1) Easy breadboard connection (cid:1) Two independent potentiometers with common ground (cid:1) Spring auto-return to center position (cid:1) Comfortable cup-type knob (cid:1) Compatible with most microcontrollers Key Specifications (cid:1) Power capability: 0.01W; 10 VDC maximum working voltage (cid:1) Interface: Dual 10 kΩ potentiometers with common ground (cid:1) Operating temperature: 32 to 158 °F (0 to 70 °C) (cid:1) Dimensions: 1.64" H x 1.40" L x 1.10" W (41.67 mm H x 35.56 mm L x 27.94 mm W) Application Ideas (cid:1) Camera Pan/Tilt Control (cid:1) Game Input/Control (cid:1) Robot Control (cid:1) Analog Input of Parameters Copyright © Parallax Inc. 2-Axis Joystick (#27800) v1.2 1/16/2012 Page 1 of 3

Quick Start Circuit This circuit works with the code below for the BASIC Stamp 2 to provide an RCTIME value for each axis that relates to the position of the joystick. In this manner the two potentiometers are providing a variable resistance for use with the RCTIME command. Caution: When using this circuit, do not use a resistor value less than 220 Ω and do not apply more than 5 VDC through this resistor to the L/R or U/D pins. For more information on how to measure resistance using the BASIC Stamp RCTIME command, please read Chapter#5 of What’s a Microcontroller? book, a free download at www.parallax.com/go/WAM. The PDF is also included in the BASIC Stamp Editor software’s Help file, which is a free download from www.parallax.com/basicstampsoftware. BASIC Stamp® 2 Program ' {$STAMP BS2} ' {$PBASIC 2.5} LR VAR Word UD VAR Word DO HIGH 4 PAUSE 2 RCTIME 4, 1, UD HIGH 11 PAUSE 2 RCTIME 11, 1, LR DEBUG HOME, "UD = ", DEC UD, CLREOL, CR, "LR = ", DEC LR, CLREOL PAUSE 50 LOOP Copyright © Parallax Inc. 2-Axis Joystick (#27800) v1.2 1/16/2012 Page 2 of 3

Advanced Circuit This circuit creates two voltage dividers referenced to VDD (in this case 5 V), using a 2-channel ADC (in this case the MCP3202) to read the voltages at the L/R and U/D pins using the code below. Caution: Do not apply voltage to the L/R+ or U/D+ pins that exceeds the I/O pin voltage rating of the device you connect to L/R or U/D, up to 10 VDC maximum. Ground<Analog voltage output at L/R and U/D<VDD. BASIC Stamp® 2 Program ' {$STAMP BS2} ' {$PBASIC 2.5} CS PIN 0 ' Chip Select (MCP3202.1) Clock PIN 1 ' Clock (MCP3202.7) DataIn PIN 2 ' --> Data Out (MCP3202.6) DataOut PIN 3 ' --> Data In (MCP3202.5) Cnts2Mv CON $0139 ' x 1.22 (To Millivolts) result0 VAR Word ' Conversion Result CH0 result1 VAR Word ' Conversion Result CH1 mVolts0 VAR Word ' Result0 --> mVolts mVolts1 VAR Word ' Result1 --> mVolts DEBUG CLS, "ADC CH 0:", CR, "Volts :", CR, "ADC CH 1:", CR, "Volts :" DO LOW CS ' Enable ADC SHIFTOUT DataOut, Clock, MSBFIRST, [%1101\4] ' Select CH0, Single-Ended SHIFTIN DataIn, Clock, MSBPOST, [result0\12] ' Read ADC HIGH CS ' Disable ADC mVolts0 = result0 */ Cnts2Mv ' Convert To Millivolts LOW CS ' Enable ADC SHIFTOUT DataOut, Clock, MSBFIRST, [%1111\4] ' Select CH1, Single-Ended SHIFTIN DataIn, Clock, MSBPOST, [result1\12] ' Read ADC HIGH CS ' Disable ADC mVolts1 = result1 */ Cnts2Mv ' Convert To Millivolts DEBUG HOME, CRSRXY, 9, 0, DEC result0, CLREOL, CRSRXY, 9, 1, DEC mVolts0 DIG 3, ".", DEC3 mVolts0, CRSRXY, 9, 2, DEC result1, CLREOL, CRSRXY, 9, 3, DEC mVolts1 DIG 3, ".", DEC3 mVolts1 PAUSE 100 LOOP Copyright © Parallax Inc. 2-Axis Joystick (#27800) v1.2 1/16/2012 Page 3 of 3