EC11编码开关1.5mm行程按压开关
- 格式:pdf
- 大小:333.65 KB
- 文档页数:7
ec11stm32例程EC11STM32是一种旋转编码器,常用于嵌入式系统中,可以用来获取旋转方向和计算旋转角度。
在STM32开发板上使用EC11STM32,需要进行相应的配置和编程。
本文将介绍EC11STM32的原理、使用方法以及编程实例。
EC11STM32工作原理:EC11STM32包含一个旋转编码器和一个按钮开关。
旋转编码器由两个光电传感器、一个LED和一个编码盘组成。
编码盘上有很多小刻度,每当旋转编码器旋转一格,编码盘上的刻度就会遮挡或透过光电传感器,从而产生一个脉冲信号。
根据脉冲信号的变化,我们可以判断旋转的方向和计算旋转的角度。
EC11STM32的使用方法:在STM32开发板上使用EC11STM32,首先需要将EC11STM32连接到正确的GPIO引脚上。
然后,我们可以通过读取GPIO引脚的状态来获取旋转和按下按钮的信息。
对于旋转编码器,我们可以使用两个引脚来获取旋转方向和计数。
对于按钮开关,我们可以使用一个引脚来获取按下和释放的状态。
编程实例:下面是一个使用EC11STM32的简单编程实例,用于获取旋转方向和计算旋转角度:```c#include "stm32f10x.h"#define CLK_GPIO GPIOA#define DT_GPIO GPIOB#define BTN_GPIO GPIOC#define CLK_PIN GPIO_Pin_0#define DT_PIN GPIO_Pin_1#define BTN_PIN GPIO_Pin_13int main(void){GPIO_InitTypeDef GPIO_InitStructure;//初始化时钟RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOB | RCC_APB2Periph_GPIOC, ENABLE);//配置CLK引脚为输入GPIO_InitStructure.GPIO_Pin = CLK_PIN;GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;GPIO_Init(CLK_GPIO, &GPIO_InitStructure);//配置DT引脚为输入GPIO_InitStructure.GPIO_Pin = DT_PIN;GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;GPIO_Init(DT_GPIO, &GPIO_InitStructure);//配置BTN引脚为输入GPIO_InitStructure.GPIO_Pin = BTN_PIN;GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;GPIO_Init(BTN_GPIO, &GPIO_InitStructure);int count = 0;int last_state = 0;int curr_state = 0;while (1){//读取CLK和DT引脚的状态last_state = curr_state;curr_state = GPIO_ReadInputDataBit(CLK_GPIO, CLK_PIN) << 1 | GPIO_ReadInputDataBit(DT_GPIO, DT_PIN);if (last_state != curr_state){//根据旋转方向增加或减少计数if ((last_state == 0b00 && curr_state == 0b01) || (last_state == 0b11 && curr_state == 0b10))count++;else if ((last_state == 0b01 && curr_state == 0b00) || (last_state == 0b10 && curr_state == 0b11))count--;//打印计数值printf("Count: %d\n", count);}//检测按钮是否按下if (GPIO_ReadInputDataBit(BTN_GPIO, BTN_PIN) == 0){//按钮按下时执行的操作printf("Button pressed\n");}}}```通过上述代码,我们可以实现读取EC11STM32的旋转和按钮信息,并进行相应的操作。
EC11旋转编码器开关编码器型号EC110201C2B-HA1应用领域汽车空调、汽车音响,汽车导航、调音台、多媒体音响\功放,家用电器等特点体积小,密封性好,可靠性高,有多种不同的规格供选择主要功能调频、调节音量、调节温度、功能切换等主要格规参数外形尺寸:∮11mm额定电压:DC5V;定位数:16/20/30/32个;脉冲数:8/15/16/20;工作温度:-40°C to85°C;旋转寿命:30000次以上;EC11规格参数一、MECHANICAL CHARACTERISTIC机械特性1、Detent Torque定位点力矩:20-200gf.cm2、Number and position of detent定位点数及位置:16/20/30/32点定位3、Shaft wobble轴摆动:0.2mm MAX4、Shaft play in rotational wobble轴的回转方向摆动:2°MAX二、ELECTRICAL CHARACTERISTIC电气特性1、Resolution分解能力:8/16/15/20个脉冲/360°2、Phase difference相位差:≥3ms3、Rated voltage额定电压:DC5V4、Insulation Resistance绝缘电阻:10MΩ1Minute at DC250V5、Dielectric Voltage耐电压:1Minute at AC50V三、ENDURANCE CHARACTERISTIC耐久特性1、Rotational life回转寿命:30,000cycles MinNote:In this catalog,if some parame ters lr drawings are different from the"Approval sheet",it's subject to the"Approval sheet".注明:如说明书与承认书规格参数、图面有异,均以承认书为准。
我从网上收集的两篇关于鼠标滚轮编码器、编码开关的介绍
(一)编码器(编码开关)原理及使用方法在电子产品设计中,经常会用到旋转编码开关,也就是所说的旋转编码器、数码电位器、Rotary En coder 。
它具有左转,右转功能,有的旋转编码开关还有按下功能。
为了使刚接触这种开关的朋友了解旋转开关的编程,我来介绍下它的原理和使用方法:
以我厂生产的EC11型编码开关为例:如图1:
三只脚:1 2 3脚一般是中间2脚接地,1、3脚上拉电阻后,当左转、右转旋转时,在1、3脚就有脉冲信号输出了。
两只脚为按压开关,按下时导通,回复时断开。
在单片机编程时,左转和右转的判别是难点,用示波器观察这种开关左转和右转时两个输出脚的信号有个相位差,如图2。
由此可见,如果输出1为高电平时,输出2出现一个高电平,这时开关就是向顺时针旋转;当输出1 为高电平,输出2出现一个低电平,这时就一定是逆时针方向旋转。
所以,在单片机编程时只需要判断当输出1为高电平时,输出2当时的状态就可以判断出是左旋转或是右旋转了。
(二)转编码开关的原理及程序设计方法现在很多仪器和设备采用了旋转编码开关做为输入装置。
常用的旋转编码开关有3个输出端子,常用的参数:转一周时输出的脉冲数(比如20)。
下面给出应用电路原理图和输出波形图:
由此可见,如果A下跳沿时,B为低则表示顺时针旋转;如果A下跳沿时,B为高电平则表示逆时针旋转。
与CPU的连接方法:将A端口接CPU的外部中断管脚(下跳沿触发),将B端口接CPU的输入IO。
ec11应用场景-回复生成文本的应用场景中,EC11编码器(Encoder)作为一种常见的输入设备,被广泛用于控制与调节系统中。
EC11编码器通常由旋钮(Knob)和编码器芯片组成,具有转动旋钮可以产生脉冲信号的功能。
EC11编码器在很多领域都有应用,比如工业自动化、仪器仪表、机器人控制以及个人电子设备等。
在本文中,我们将针对EC11编码器的应用场景展开详细讨论。
一、工业自动化领域在工业自动化领域中,EC11编码器常被用于控制机器人及生产线上的各项运动。
通过旋钮的旋转,EC11编码器可以生成脉冲信号,反映旋钮的位置或速度。
这个信号可以被编码器芯片解码,并传递给控制系统。
工业机器人控制中,经常需要根据编码器信号精确控制机械臂、传送带或工件输送等设备的运动,从而实现自动化的生产流程。
EC11编码器的高分辨率、稳定性和可靠性,使其成为工业自动化领域的重要控制元件。
二、仪器仪表领域在仪器仪表领域中,EC11编码器的应用同样广泛。
比如对于测量仪表,EC11编码器可以用于调整仪表的刻度、范围或灵敏度,通过改变脉冲信号的频率或幅度来实现。
同时,EC11编码器也可以用于调节仪表中的开关、电位器、滑动变阻器等参数,从而实现对仪器的精确控制。
此外,EC11编码器还常被用于控制音频设备如音量控制、音调调节、平衡控制等,并通过软件解码输出对应信号。
三、机器人控制领域机器人控制是EC11编码器最常见的应用场景之一。
通过旋钮的旋转,编码器会生成相应的脉冲信号。
根据脉冲信号的改变,机器人可以准确地调整运动的速度、方向、角度等参数。
EC11编码器还可以用于操纵机器人的手臂、夹具,实现准确的抓取和放置动作。
此外,EC11编码器还可以作为人机交互接口,用于与机器人进行简单的操作和交互。
四、个人电子设备在个人电子设备领域,EC11编码器也有广泛应用。
比如,在音频设备中,EC11编码器可以用于调节音量、平衡、音效等参数。
在智能手机或平板电脑中,EC11编码器可以作为触控面板的一种选择,通过旋钮的转动来调节屏幕的亮度、音量、页面滑动等操作。
ec11编码开关编程范例EC11编码开关是一种常用的旋转编码器,可以用于控制器、电子设备等的编程操作。
下面是一个简单的编程范例,以Python语言为例:python.import RPi.GPIO as GPIO.import time.# 设置GPIO引脚。
CLK = 17。
DT = 18。
SW = 27。
# 初始化GPIO模式。
GPIO.setmode(GPIO.BCM)。
GPIO.setup(CLK, GPIO.IN, pull_up_down=GPIO.PUD_UP)。
GPIO.setup(DT, GPIO.IN, pull_up_down=GPIO.PUD_UP)。
GPIO.setup(SW, GPIO.IN, pull_up_down=GPIO.PUD_UP)。
# 定义回调函数。
def rotate_callback(channel):global counter.if GPIO.input(DT):counter += 1。
else:counter -= 1。
def switch_callback(channel):print("Switch pressed!")。
# 注册回调函数。
GPIO.add_event_detect(CLK, GPIO.RISING, callback=rotate_callback, bouncetime=200)。
GPIO.add_event_detect(SW, GPIO.FALLING, callback=switch_callback, bouncetime=200)。
# 主循环。
counter = 0。
try:while True:print("Counter:", counter)。
time.sleep(0.1)。
except KeyboardInterrupt:GPIO.cleanup()。
上述范例中,我们使用RPi.GPIO库来控制树莓派的GPIO引脚。
Chattiring t1,t3≤5mS.Bounce t2≤3mS.Detent feeling has to remains Contact resistance 200ΩMax all items is shall be for 1.5H,After which measurements shall be made.all items is shall be all items is shall be Application time of soldering iron:within 3S solder shall cover75% minimum of the surface being immersed.所有项应满足初期规格。
be subjected to standard atmospheric conditions Specifications in clause 所有项应满足初期规格温度40±2℃,湿度90~95%的恒温恒湿槽中放置96±4atmospheric conditions for 1.5H,After which 温度-40±3℃的恒温箱中放置96±4小时,then the encoder.shall be subjected to standard satisfied.mechanical abnormality.不得有绝缘体的破损、变形、Electrical characteristics 常温、常湿放置1.5小时后测试.The encoder shall be stored at a temperature of -40±3℃for 96±4H in a thermostatic chamber.And 所有项应满足初期规格。
Specifications in clause 小时后,在常温、常湿中放置1.5小时后测试. The 温度85±3℃的恒温箱中放置96±4小时,satisfied.in a thermostatic chamber.And the encoder shall with relative humidity of 90% to95% for96±4H encoder shall be stored at temperature of40 ±2℃ Specifications in clause 85±3℃for 96±4H in a thermostatic chamber.And The encoder shall be stored at a temperature of satisfied.then the encoder.shall be subjected to standard 常温、常湿放置1.5小时后测试.atmospheric conditions for 1.5H,After which 温度300℃以下,时间3秒以内.端子在260℃±5℃温度的焊锡槽内浸锡3秒±0.5秒.measurements shall be made. 预热:基板表面温度100℃以下,时间1分钟以内.Printed wiring board:single-sided copper clad 焊接:温度260±5℃或以下,时间3秒以内.Preheating:1.Surface temperature of board:100℃. heator less 2.Preheating time:within 1 minute.shall be satisfied No 接触无异常.Soldering:Solder temperature:260±5℃ or less Bit temperature of soldering iron:300℃less than Immersion time:within 3S 手焊 Manual soldering. 7-6.焊锡性浸渍面须有75%以上焊锡附着at 260℃for 3S±0.5S.Solderability The terminals shall be immersed into solder bath A new uniform coating of EC11 REVERSE DIRECTION SERIES SPECIFICATION600~1000cycles/H without electrical load,after with 在无负荷条件下轴以600~1000周/小时速度回转,端子间接触阻抗200Ω以下■在力矩≤100gf.cm时30,000±200周 7-3.耐热性 7-2.耐湿性 Damp heatmeasurements shall be made.Resistance Cold7-4.低温特性一日连续5000~8000次.laminate board with thickness of 1.6mm.使用基板:t=1.6mm的单面覆铜板.槽焊 Dip soldering.7-5.焊锡耐热性 to Soldering Dry heat7 耐久性能 Endurance CharacteristicsRotationallifeCONDITIONSITEM条件(5000 to 8000 continuous cycles for 24 hours.)7-1.回转寿命项目振荡 t1,t3≤5mS.突跳 t2≤3mS.SPECIFICATIONS15,000±200cycles per above 100gf.cm.规格The shaft of encoder shall be rotated at a speed of measurements shall be made.尚余有轻微定位感.30,000±200cycles per below 100gf.cm.□在力矩>100gf.cm时15,000±200周.≤100mΩ100mΩor lessPush 1Kgf to the shaft of encoder in the axial4-1.按压寿命 Push-life修订 Revision日期 Date 经 办 Designed审 核 Check批 准 Approved初始发行2011-1-4版本 VERSION:A0≤10mS10mS or less 在端子和安装板间施加AC300V电压1分钟A voltage of300V AC shall be applied for 1 minute 用DC 5V 1mA 电压测定.which a voltage of 250V DC is applied between Rated voltage:DC 5VNote:The following specification is only suitable for the one type with switch construction of RE11 encoder series.1.额定值 Rating2-1.接触电阻 2.电气性能 Electrical Characteristics条件规格1-2.最大额定电流 (阻抗负载)Measurement shall be made under the condition 在端子和安装板间施加电压 250V DC.100MΩ 以上100MΩ Min SPECIFICATIONSMaximum operating current (resistive load):10mA MaxITEMCONDITIONS1-1.额定电压推动开关部分Push Switch Portion备注:以下规格适用于RE11编码器带开关系列.项目不得有绝缘破坏Without arcing or breakdown.3 机械性能 M echanical Characteristicsbetween individual terminals and bushing and plank.EC11 REVERSE DIRECTION SERIES SPECIFICATION4 耐久性能 Endurance Characteristicsfore of switch Single pole and single throw (push ON)单极单投(按压ON)接点数Switch circuit and ■0.5±0.3 mm □1.5±0.5 mm3-2.开关动作力 Operation 500±200gf Push static load to the shaft in the axial directionTravel of switchVoltage test at DC 5V 1mA.2-2.绝缘阻抗 Insulation number of pulse individual terminals and bushing and plank.以1秒钟1往返(OFF-ON-OFF)按压动作.Shaft shall be push at 1 cycles/s(OFF-ON-OFF) resistance Contact 2-3.振荡 Bouncing resistance 3-1.开关电路 2-4.耐电压 Dielectric strength 在轴端,沿轴向施加的按压力.3-3.开关移动量的速度按压。
EC12系列编码开关编码器型号EC121102X2B-HA1应用领域汽车音响,汽车导航、调音台、多媒体音响\功放,家用电器等特点体积较小、密封性好、性能稳定,绝缘轴柄,可以带按压开关功能,有多种不同的规格可选择。
主要功能调频、调节音量、调节温度、功能选择等主要格规参数外形尺寸:12.5mm额定电压:DC5V;定位数:12/18/24/30个;脉冲冲数:12/15/18;工作温度:-40°C to85°C;旋转寿命:30000次以上;开关寿命:20000次以上;EC12规格参数一、MECHANICAL CHARACTERISTIC机械特性1、Detent Torque定位点力矩:30-200gf.cm2、Number and position of detent定位点数及位置:12/18/24/30点定位3、Switch circuit and number of pulse开关电路、接点数:单极单投(推ON)4、Travel of switch开关移动量:0.5±0.3mm5、Operating force of switch开关作动力:450±200gf6、Shaft wobble(mm p-p)轴摆动:1.0x L/30mm p-p以下(L:安装长度).二、ELECTRICAL CHARACTERISTIC电气特性1、Resolution分解能力:12/15/18个脉冲/360°2、Phase difference相位差:≥4ms3、Rated voltage额定电压:DC5V4、Insulation Resistance绝缘电阻:10MΩ1Minute at DC50V5、Dielectric Voltage耐电压:1Minute at AC50V三、ENDURANCE CHARACTERISTIC耐久特性1、Rotational life回转寿命:30,000cycles Min2、Push operating life按压寿命:20,000cycles MinNote:In this catalog,if some parame ters lr drawings are different from the"Approval sheet",it's subject to the"Approval sheet".注明:如说明书与承认书规格参数、图面有异,均以承认书为准L=17.5F=5EC12 SERIES SPECIFICATIONEC12系列规格书1/5P 1、 General 一般事项1-1、Scope 适用规格This specification applies to 12mm size low-profile thin rotary encoder (incremental type) for microscopiccurrent circuits used in electronic equipment.本规格书适用于电子设备用微小电流回路12型回转式编码器。
EC11编码开关1.5mm行程按压开关编码器型号EC110501N2D-HA1应用领域汽车音响,汽车导航、调音台、多媒体音响\功放,家用电器等特点体积小,密封性好,可靠性高,有多种不同的规格供选择。
主要功能调频、调节音量、调节温度、功能切换等。
主要格规参数外形尺寸:∮11mm额定电压:DC5V;定位数:16/20/30/32个;脉冲数:8/15/16/20;工作温度:-40°C to85°C;旋转寿命:30000次以上;EC11规格参数一、MECHANICAL CHARACTERISTIC机械特性1、Detent Torque定位点力矩:20-200gf.cm2、Number and position of detent定位点数及位置:16/20/30/32点定位3、Shaft wobble轴摆动:0.2mm MAX4、Shaft play in rotational wobble轴的回转方向摆动:2°MAX二、ELECTRICAL CHARACTERISTIC电气特性1、Resolution分解能力:8/16/15/20个脉冲/360°2、Phase difference相位差:≥3ms3、Rated voltage额定电压:DC5V4、Insulation Resistance绝缘电阻:10MΩ1Minute at DC250V5、Dielectric Voltage耐电压:1Minute at AC50V三、ENDURANCE CHARACTERISTIC耐久特性1、Rotational life回转寿命:30,000cycles MinNote:In this catalog,if some parame ters lr drawings are different from the"Approval sheet",it's subject to the"Approval sheet".注明:如说明书与承认书规格参数、图面有异,均以承认书为准。
特长汽车导航器,汽车音响的音量调节和菜单选择等要求安装面积小型化的汽车用,普通家电用机器的各种控制器DVD播放器/刻录机,迷你组合音响,CD,便携式音响等影像,音响设备的各种控制器白色家电(微波炉)●●●用途NEW小型高精度滑动式编码器。
附有行程为1.5mm的按动开关,也可对应本体高度4.5mm。
增量型。
可以支持1,000,000cycles的操作寿命(EC11J)。
●●●●127107341073410734107341073410734还有上述产品一览表以外的产品。
需要时请向本公司营业部门询问。
注产品种类s P.190产品规格s P.194,195附加零部件s P.236573477Verticalwith push-on switchSelf-return switchSelf-return switch with push-on switch (travel 0.5mm/1.5mm )Dual-shafts type Dual-shafts type with push-on switch travel 1.5mm )11形金属轴编码器Unit:mm( )尺寸适用于无按开开关产品。
2. 轴的轴尺寸·形状的标准Unit:mmUnit:mm 轴尺寸的种类1.轴种类的部分为P.194, P.195产品一览表中记载的规格。
2.还有上述产品一览表以外的产品,需要时,请向本公司营业部门询问。
注11形, 20形金属轴编码器to 85to 85to853for 240hmax. 3s max.mN m34755, 51s2605, 51s3for 240h2, 90 to 95%RH for 240h100M min. 250V DCto 80min.50V DC4020适用于EC11E152U402。
注0.40.30.3 1.50.50.80.50.30.50.52.52222231mA 16V DC min. ratings11形,20形金属轴编码器回流方式的参考举例1.加热方式远红外线加热的上下加热方式。
带按压开关编码器EC1101编码器型号EC110101R2B-HA1应用领域汽车音响,汽车导航、调音台、多媒体音响\功放,家用电器等特点体积小,密封性好,可靠性高,有多种不同的规格供选择。
主要功能调频、调节音量、调节温度、功能切换等。
主要格规参数外形尺寸:∮11mm额定电压:DC5V;定位数:16/20/30/32个;脉冲数:8/15/16/20;工作温度:-40°C to85°C;旋转寿命:30000次以上;EC11规格参数一、MECHANICAL CHARACTERISTIC机械特性1、Detent Torque定位点力矩:20-200gf.cm2、Number and position of detent定位点数及位置:16/20/30/32点定位3、Shaft wobble轴摆动:0.2mm MAX4、Shaft play in rotational wobble轴的回转方向摆动:2°MAX二、ELECTRICAL CHARACTERISTIC电气特性1、Resolution分解能力:8/16/15/20个脉冲/360°2、Phase difference相位差:≥3ms3、Rated voltage额定电压:DC5V4、Insulation Resistance绝缘电阻:10MΩ1Minute at DC250V5、Dielectric Voltage耐电压:1Minute at AC50V三、ENDURANCE CHARACTERISTIC耐久特性1、Rotational life回转寿命:30,000cycles MinNote:In this catalog,if some parame ters lr drawings are different from the"Approval sheet",it's subject to the"Approval sheet".注明:如说明书与承认书规格参数、图面有异,均以承认书为准。
LJV RE1101XB1-H01旋转编码器
一旋转编码器图片
二RE1101XB1-H01旋转编码器特点
1.特点:6.5厚型,螺纹轴套
2.输出:增量式
3.脉冲数/定位:9/18,15/30,20/20
4.按压开关:有(0.5)/无
5.按压寿命:20000/50000次
6.旋转寿命:30000次
三用途
1.5行程旋转编码开关编码器,按压及旋转触感舒适、极佳,按压手感层次感强,旋转手感定位明显、顺滑,按压声响极小,旋转声响微小,摇摆晃动量小,旋转定位虚位小,且大大减少因外在力施加于轴柄时而产生的误触发现象,是汽车音响、空调、仪表、示波器、医疗器械及仪器等调节音量、频率、速度、亮度功能产品的最佳选择。
四图纸。
一、编码器(编码开关)原理及使用方法
旋转编码器、数码电位器、Rotary Encoder。
它具有左转,右转功能,有的旋转编码开关还有按下功能。
使用方法:EC11型编码开关为例:
三只脚:123脚一般是中间2脚接地,1、3脚上拉电阻后,当左转、右转旋转时,在1、3脚就有脉冲信号输出了。
两只脚:按压开关,按下时导通,回复时断开。
二、在单片机编程时,左转和右转的判别是难点,用示波器观察这种开关左转和右转时
两个输出脚的信号有个相位差.由此可见,如果输出1为高电平时,输出2出现一
个高电平,这时开关就是向顺时针旋转;当输出1为高电平,输出2出现一个低
电平,这时就一定是逆时针方向旋转。
所以,在单片机编程时只需要判断当输
出1为高电平时,输出2当时的状态就可以判断出是左旋转或是右旋转了。
了解EC11旋转编码器,编写EC11旋转编码器驱动程序。
⼀、EC11旋转编码器基本认识(1)、ALPS旋转编码器选型垂直型(2)、ALPS旋转编码器选型侧装型(3)、ALPS旋转编码器选型机械尺⼨图(4)、ALPS旋转编码器选型引脚图(5)、ALPS旋转编码器选型内部触点开关结构图(6)、ALPS旋转编码器选型时序图1、接外部上拉电阻,适⽤于浮空输⼊和输⼊上拉模式的IO⼝,如下图所⽰。
2、⽆外部上拉电阻,⼏乎所有单⽚机IO⼝都可以设置为输⼊上拉模式的IO⼝,如下图所⽰。
⼆、EC11旋转编码器初级认识(1)、EC11旋转编码器按旋转出动作EC11旋转编码器按旋转的输出动作分为2种,⼀种就是转⼀格,A、B对C端输出⼀个完整脉冲,简称⼀定位⼀脉冲;另⼀种是转两格,A、B对C端输出⼀个完整脉冲(转⼀格就只是由低电平---⾼电平或由⾼电平---低电平),简称两定位⼀脉冲。
(2)、EC11旋转编码器按旋转出动作:⼀定位⼀脉冲1、⼀定位⼀脉冲EC11旋转编码器转动⼀格输出波形图解释上图:⼀定位⼀脉冲的EC11旋转编码器按测试电路图的接法,在静⽌的时候A、B两线输出都是⾼电平。
转动⼀格,A、B两线各⾃输出⼀个低电平脉冲,然后⼜回到⾼电平状态,对应于EC11旋转编码器内部A、B两个触点开关的动作为:断开---闭合---断开。
(3)、EC11旋转编码器按旋转出动作:两定位⼀脉冲1、两定位⼀脉冲EC11旋转编码器转动⼀格输出下降沿波形图2、两定位⼀脉冲EC11旋转编码器转动⼀格输出上升沿波形图解释上两图:两定位⼀脉冲的EC11旋转编码器稍微复杂⼀些,转动⼀格只会输出半个脉冲。
静⽌时,A、B触点开关可以是断开的也可以是闭合的。
若初始状态时A、B都是⾼电平,转动⼀格就输出从⾼电平到低电平的下降沿,随后⼀直输出低电平,对应于EC11旋转编码器内部A、B两个触电开关的动作为断开---闭合。
若初始状态时A、B都是低电平,转动⼀格就输出从低电平到⾼电平的上升沿,随后⼀直输出低电平,对应于EC11旋转编码器内部AB两个触点开关的动作为闭合---断开。
Structure ReflowActuator configuration FlatActuator length20mmNumber of detent30Number of pulse15Push-on switch WithTravel of push-on switch 1.5mmOperating life100,000 cyclesOperating temperature range-40℃ to +85℃ElectricalperformanceRatings10mA 5V DCOutput signal Two phase A and BMax./min. operatingcurrent(Resistiveload)10mA/1mAInsulation resistance100MΩ min. 250V DCVoltage proof300V AC for 1 minute or 360V AC for 1sMechanical performance Detent torque12±5mN·m (Initial)10±4mN·m (After reflow) Push-pull strength100NPush-on switch specifications ContactarrangementSingle pole single throw (Push-on) Travel 1.5±0.5mmOperating force4±2NRating0.1A 5V DC (1mA 5V DC min. ratings)Contact resistance(Initial100mΩ max./200mΩ max.11mm Size Metal Shaft Type EC11 Seriesperformance/Afterlifetime)Operating life100,000 timesJapan600 Minimum order unit(pcs.)Export600 DimensionsMounting Hole DimensionsOutput WaveSliding NoiseAt R=5kΩ Chattering: 3ms max. Bounce: 2ms max.Packing SpecificationsTray1 case / Japan300Number of packages(pcs.)6001 case / exportpackingExport package measurements (mm)369×283×263Soldering ConditionsExample of Reflow Soldering Condition1. Heating methodDouble heating method with infrared heater.2. Temperature measurementThermocouple 0.1 to 0.2 Φ CA (K) or CC (T) at soldering portion (copper foil surface). A heat resisting tape should be used for fixed measurement.3. Temperature profileA B C D E F G H No. of reflows 260℃230℃180℃150℃ 2 min.max.3s40s 4 min.max. 2 time max.(1)When using an infrared reflow oven, solder may sometimes not be applied. Be sure to use a hot airreflow oven or a type that uses infrared rays in combination with hot air.(2)The temperatures given above are the maximum temperatures at the terminals of the potentiometer when employing a hot air reflow method. The temperature of the PC board and the surface temperature of the potentiometer may vary greatly depending on the PC board material, its size and thickness. Ensure that the surface temperature of the potentiometer does not rise to 250°C or greater.(3)Conditions vary to some extent depending on the type of reflow bath used. Be sure to give due consideration to this prior to use.Reference for Hand SolderingTip temperature350±10℃ max.Soldering time3(+1, 0)sNo. of solders 2 timeProduct VarietiesSingle-shaft Type1) Knurled Type Unit : mm Style (Shaft diameter : φ5.975)2) Flat Type Unit : mm Style (Shaft diameter : φ5.975)3) Slotted Type Unit : mm Style (Shaft diameter : φ5.975)Notes are common to this series/models.1. This site catalog shows only outline specifications. When using the products, please obtain formalspecifications for supply.2. Please place purchase orders per minimum order unit (integer).3. Products other than those listed in the above chart are also available. Please contact us for details.4. This products can be used in vehicles.Although these products are designed to perform over a wide operating temperature range, please ensure that you receive and read the formal delivery specifications before use.。
EC11编码开关1.5mm行程按压开关编码器型号EC110501N2D-HA1应用领域汽车音响,汽车导航、调音台、多媒体音响\功放,家用电器等特点体积小,密封性好,可靠性高,有多种不同的规格供选择。
主要功能调频、调节音量、调节温度、功能切换等。
主要格规参数外形尺寸:∮11mm额定电压:DC5V;定位数:16/20/30/32个;脉冲数:8/15/16/20;工作温度:-40°C to85°C;旋转寿命:30000次以上;EC11规格参数一、MECHANICAL CHARACTERISTIC机械特性1、Detent Torque定位点力矩:20-200gf.cm2、Number and position of detent定位点数及位置:16/20/30/32点定位3、Shaft wobble轴摆动:0.2mm MAX4、Shaft play in rotational wobble轴的回转方向摆动:2°MAX二、ELECTRICAL CHARACTERISTIC电气特性1、Resolution分解能力:8/16/15/20个脉冲/360°2、Phase difference相位差:≥3ms3、Rated voltage额定电压:DC5V4、Insulation Resistance绝缘电阻:10MΩ1Minute at DC250V5、Dielectric Voltage耐电压:1Minute at AC50V三、ENDURANCE CHARACTERISTIC耐久特性1、Rotational life回转寿命:30,000cycles MinNote:In this catalog,if some parame ters lr drawings are different from the"Approval sheet",it's subject to the"Approval sheet".注明:如说明书与承认书规格参数、图面有异,均以承认书为准。
L=16.5a=7EC1105 SERIES SPECIFICATIONEC1105 系列规格书1/5P1、 General 一般事项1-1、Scope 适用规格This specification applies to 11mm size low-profile thin rotary encoder (incremental type) for microscopic current circuits, used in electronic equipment.本规格书为11mm小型回转式编码器(增量型),适用于电子设备内微小电子电路。
1-2、Standard atmospheric conditions标准状态Unless otherwise specified ,the standard range of atmospheric conditions for making measurements and test is as following limits:除另有规定外,测量应在以下状态下进行:Ambient temperature温度:15°C to 35°CRelative humidity相对湿度:25% to 85%Air pressure气压:86kPa to 106kPa1-3、Operating temperature range使用温度范围:-40°C to 85°C1-4、 Storage temperature range保存温度范围:-40°C to 85°C2、Construction 构造2-1 Dimensions 尺寸Refer to attached drawing 见所附成品图3、 Rating 额定值3-1、Rated voltage 额定电压: DC 5V3-2、Maximum operating current (resistive load)最大额定电流(阻抗负载)Each lead 各相导线:0.5mA(Max 10mA; Min 0.5mA)Common lead 公共导线:1mA(Max 10mA; Min 0.5mA)4、Application Notes 使用上的事项4-1. Avoid storing the products in a place at high temperature, high humidity and in Corrosive gases. Please use this product as soon as possible with 6 months limitation . If any remainder left after packing is opened, please store it with proper moistureproofing,gasproofing etc.避免储藏于高温,潮湿及腐蚀的场所. 产品购入后尽可能在6个月内使用完. 拆包装后未使用完的剩余产品需储藏于防潮防毒的环境下.4-2. The encoder pulses count method should be designed with taking operating speed ,sampling time and design software intocosideration.编码器信号的计算方法应将操作的速度,信号的取样时间及电子回路中的微电脑软体等考虑进去.4-3. With this products ,detent positon will always be aligned with A-OFF or ON phase. Therefore make the A phase of the microcom- puter the reference at the soft ware design stage.此产品在定位点状态时A相波形是处于OFF或ON状态,因此在设计软体时请留意此现象.4-4. At design of the pulse count process. Using the C/R filter circuit is Recommended.在设计时要考虑到杂讯,须使用C/R滤波电路.4-5. Care must be taken not to expose this product to water or dew to prevent possible problem in pluses output waveform.本产品请勿碰触到水,可能会导致输出波形的异常.4-6.When encoder are used, the speed is suitable for controlling with 360°/s. The highest speed will lead that IC doesn't obtain signal.Mean while,the slide contact in the inside of product can be divorced form in order to be poor conatct.在使用编码品时速度宜控制在360°/s 内,转速过快会导致IC抓取不到信号及产品内部的接触刷会瞬间脱离产生接触不良。
EC1105 SERIES SPECIFICATION3/5PEC1105SERIES SPECIFICATIONEC1105系列规格书6、 Mechanical characteristics 机械性能ITEM CONDITIONSSPECIFICATIONS项 目条 件规 格6-7、Side thrust stre- A load of 20N(2.04Kgf) shall be applied at the point 5mm from the tip Without excessive play of bending in ngth of shaft of the shaft in a direction perpendicular to the axis of shaft for 10 s.shaft. No mechanical abnormally.轴的垂直押引强度在轴前端5 mm 处加20 N(2.04 Kgf)的静负荷力10 s.轴不得有明显松动及接触不良.6-8、Shaft play in Testing by angle board.2° Max rotational wobble 用角度板测定.2° 以下轴的回转方向摆动6-9、Shaft play in The pull / push load of 0.5N(51gf) shall be imposed on the shaft.0.2mm Max.axial direction 在轴上施加0.5N(51gf)的推力或拉力.0.2mm 以下.轴向间隙7、Endurance characteristics 耐久性能The shaft of encoder shall be rotated to 30,000 cycles at a speed of Chattering t1,t3≤5ms Bounce t2≤3ms 7-1、Rotational life600~800 cycles/H without electrical load,after which measurements 振荡:t1,t3≤5ms ;突跳:t2≤3ms 回转寿命shall be made.Detent torque:Relative to the previously 在无负荷条件下轴以600~800周/小时速度回转 30,000 周。
specified value 50%.1 cycle: rotate 360° CCW rotate 360° CW 定位力矩:为原始规格值的50%1周指顺时针转360°逆时针转360°Shaft wobble should be within 150% of the specifications.轴摆动为原始规格值的150%以内Shaft play in rotational wobble:4º Max.轴的回转方向摆动:4º以内The encoder shall be stored at temprature of 40±2°C with relative hu-SW Contact resistance:200 m Ω max. Encoder characteristics item: 5-1、5-5、5-6、6-2 Push switch characteristics item: 1-2-3、1-2-4、1-3-2、1-3-3 The same as the initial specfications. 开关接触阻抗小于200 m Ω。