tag 标签: touch

相关博文
  • 热度 25
    2016-1-22 15:08
    1200 次阅读|
    0 个评论
    触摸是一种非常出色的技术。如今,触摸就像键盘、鼠标等其他设备一样成为一项关键的功能。它已经改变了用户和设备之间互动的方式。用户能够通过观察设备的响应来感知触摸的效果。触摸将用户和设备更紧密得联系在一起。 Toradex 针对不同的接口提供多种触摸解决方案。在这篇博文中,我将简要介绍 Toradex 的触摸解决方案。 电阻式触摸 Colibri 和 Apalis 计算机模块提供支持 4 线和 5 线触摸屏的接口。该接口的驱动已经集成在我们预装的 Win CE/Linux 标准镜像中。更多的信息,请访问 Resistive Touch Screen . 注意 :并不是所有的模块都支持 5 线电阻触摸屏。请参考 Colibri 和 Apalis 系列的产品说明,了解各种电阻触摸屏支持情况。   电容式触摸 1). I2C/SPI 电容式多点触摸设备 绝大多数的多点或者单点电容触摸设备都支持 I2C 接口,也有部分设备采用 SPI 接口。这些设备的通信协议并不标准,所以 Toradex 无法在 BSP 中提供通用的电容触摸驱动。如果你要开发新控制器的多点触摸驱动,那么你需要很好地掌握 Windows CE 和 stream driver 结构、platform builder 使用等等。因此,从底层开始开发驱动,在开发和调试上将需要大量的时间投入。 为了简化这个工作,Toradex 开发了一套称为"Capacitive multi-touch solution"的框架。这将帮助你轻松地将我们的电容多点触摸驱动应用到任何触摸硬件设备上。不同于其他的设备驱动,"Unified Multi-Touch driver" 不会访问"多点触摸设备"或者任何其他硬件。Unified Multi-Touch driver 是内核的一部分。 "Multi-Touch Hardware Adaption" 作为应用程序运行。它既可以使用也可以不使用标准的 Toradex 库与 "Multi-Touch Device" 通信。"Multi-Touch Hardware Adaption" 主要任务是从 "Multi-Touch" 读取状态和位置信息,并发送到 "Unified Multi-Touch Driver"。这个方法的主要优势是整个和 Multi-Touch Device 的通信可以作为应用实现。而 " Multi-Touch Hardware Adaption " 的源代码则可以免费获取。你可以方便针对其他触摸设备修改这个例程,并用于到你的项目中。更多详细的信息,请访问 Multi-Touch Solution Toradex 提供完整的 Multi-Touch Display Kits 。即使在您实际开发产品之前,也可以使用这些套件快速地搭建开发评估环境。通过一些小的修改,我们还可以将多点触摸解决方案配置为支持手势的单点触摸。   2). I2C/SPI 电容式单点触摸驱动 电容单点触摸驱动支持单手指操作,在 Windows CE 中模拟鼠标事件。相比于真实的鼠标,这些驱动使用绝对坐标。用户可以在有效触摸区域内设置鼠标区域和虚拟按键区域。 当产品不需要硬件按键的时候,这是一个非常有用的功能。软件按键能够方便地将功能代码关联到按键的点击动作,这就类似在真实的键盘上按压。这些事件将会发送给 GWES。 单点触摸的主要功能: - 在鼠标区域内的触摸将会被转化为正常的鼠标事件 - 按键区域内的触摸可以用特殊方法处理 - 任何在鼠标和按键区域外的触摸都将被忽略 - 鼠标区域的坐标系统(起点和方向)可以更具显示屏做调整 更多关于电容单点触摸驱动的信息,请点击 这里 。用户可以首先使用我们提供的现成 驱动 。如果需要修改我们的驱动,请联系我们的支持团队,我们对于定制化驱动只能提供有限的支持,这些驱动不允许移植到其他版本 Windows Embedded Compact 和模块上。 注意 :我们后续将不再继续支持该驱动,这些功能将会扩展到上面提到的 Multi-Touch Solution里面。   3). USB HID 电容式触摸 有些电容触摸设备使用 USB HID 类的鼠标协议或者其他特有的触摸协议,这些设备会将触摸事件作为鼠标协议发送到主机或者是发送真实的触摸位置。我们使用鼠标作为基础驱动,并加以修改,从而支持 USB 触摸。你可以在这里: USB HID Touch 获取更多详情。该驱动会从触摸硬件获取触摸位置信息,转换为相关的鼠标事件,并发送到 GWES。 用户可以从市场上购买基于 USB 的触摸设备,直接将其连接到 Toradex 的系统模块和配套底板上。触摸设备可以立即工作。如果触摸设备没有响应,根据这里 troubleshooting 步骤使其工作。如果问题依旧,请同 Toradex 支持团队取得直接联系。目前,USB HID 只支持单点触摸,多点触摸尚不可用。   4). 触摸手势 Windows Embedded Compact从 Windows CE6 R3 开始支持手势,WinCE6 只支持单点手势触摸;WEC 7 and 2013 支持单点触摸、对称双点触摸和两个触点的多点触摸。标准的手势识别器支持拖动、滚动、选择、双击、选择和保持动作,使用外部或者扩展识别器,则可以支持缩 放和旋转等手势。 手势功能通过 Toradex 的 Multi-touch Solutions 支持,电容式单点触摸和 USB HID触摸不支持手势。了解更多关于 Windows Embedded Compact 对手势的支持,请参考这里。
  • 热度 26
    2016-1-22 15:07
    1274 次阅读|
    0 个评论
    触摸是一种非常出色的技术。如今,触摸就像键盘、鼠标等其他设备一样成为一项关键的功能。它已经改变了用户和设备之间互动的方式。用户能够通过观察设备的响应来感知触摸的效果。触摸将用户和设备更紧密得联系在一起。 Toradex 针对不同的接口提供多种触摸解决方案。在这篇博文中,我将简要介绍 Toradex 的触摸解决方案。 电阻式触摸 Colibri 和 Apalis 计算机模块提供支持 4 线和 5 线触摸屏的接口。该接口的驱动已经集成在我们预装的 Win CE/Linux 标准镜像中。更多的信息,请访问 Resistive Touch Screen . 注意 :并不是所有的模块都支持 5 线电阻触摸屏。请参考 Colibri 和 Apalis 系列的产品说明,了解各种电阻触摸屏支持情况。   电容式触摸 1). I2C/SPI 电容式多点触摸设备 绝大多数的多点或者单点电容触摸设备都支持 I2C 接口,也有部分设备采用 SPI 接口。这些设备的通信协议并不标准,所以 Toradex 无法在 BSP 中提供通用的电容触摸驱动。如果你要开发新控制器的多点触摸驱动,那么你需要很好地掌握 Windows CE 和 stream driver 结构、platform builder 使用等等。因此,从底层开始开发驱动,在开发和调试上将需要大量的时间投入。 为了简化这个工作,Toradex 开发了一套称为"Capacitive multi-touch solution"的框架。这将帮助你轻松地将我们的电容多点触摸驱动应用到任何触摸硬件设备上。不同于其他的设备驱动,"Unified Multi-Touch driver" 不会访问"多点触摸设备"或者任何其他硬件。Unified Multi-Touch driver 是内核的一部分。 "Multi-Touch Hardware Adaption" 作为应用程序运行。它既可以使用也可以不使用标准的 Toradex 库与 "Multi-Touch Device" 通信。"Multi-Touch Hardware Adaption" 主要任务是从 "Multi-Touch" 读取状态和位置信息,并发送到 "Unified Multi-Touch Driver"。这个方法的主要优势是整个和 Multi-Touch Device 的通信可以作为应用实现。而 " Multi-Touch Hardware Adaption " 的源代码则可以免费获取。你可以方便针对其他触摸设备修改这个例程,并用于到你的项目中。更多详细的信息,请访问 Multi-Touch Solution Toradex 提供完整的 Multi-Touch Display Kits 。即使在您实际开发产品之前,也可以使用这些套件快速地搭建开发评估环境。通过一些小的修改,我们还可以将多点触摸解决方案配置为支持手势的单点触摸。   2). I2C/SPI 电容式单点触摸驱动 电容单点触摸驱动支持单手指操作,在 Windows CE 中模拟鼠标事件。相比于真实的鼠标,这些驱动使用绝对坐标。用户可以在有效触摸区域内设置鼠标区域和虚拟按键区域。 当产品不需要硬件按键的时候,这是一个非常有用的功能。软件按键能够方便地将功能代码关联到按键的点击动作,这就类似在真实的键盘上按压。这些事件将会发送给 GWES。 单点触摸的主要功能: - 在鼠标区域内的触摸将会被转化为正常的鼠标事件 - 按键区域内的触摸可以用特殊方法处理 - 任何在鼠标和按键区域外的触摸都将被忽略 - 鼠标区域的坐标系统(起点和方向)可以更具显示屏做调整 更多关于电容单点触摸驱动的信息,请点击 这里 。用户可以首先使用我们提供的现成 驱动 。如果需要修改我们的驱动,请联系我们的支持团队,我们对于定制化驱动只能提供有限的支持,这些驱动不允许移植到其他版本 Windows Embedded Compact 和模块上。 注意 :我们后续将不再继续支持该驱动,这些功能将会扩展到上面提到的 Multi-Touch Solution里面。   3). USB HID 电容式触摸 有些电容触摸设备使用 USB HID 类的鼠标协议或者其他特有的触摸协议,这些设备会将触摸事件作为鼠标协议发送到主机或者是发送真实的触摸位置。我们使用鼠标作为基础驱动,并加以修改,从而支持 USB 触摸。你可以在这里: USB HID Touch 获取更多详情。该驱动会从触摸硬件获取触摸位置信息,转换为相关的鼠标事件,并发送到 GWES。 用户可以从市场上购买基于 USB 的触摸设备,直接将其连接到 Toradex 的系统模块和配套底板上。触摸设备可以立即工作。如果触摸设备没有响应,根据这里 troubleshooting 步骤使其工作。如果问题依旧,请同 Toradex 支持团队取得直接联系。目前,USB HID 只支持单点触摸,多点触摸尚不可用。   4). 触摸手势 Windows Embedded Compact从 Windows CE6 R3 开始支持手势,WinCE6 只支持单点手势触摸;WEC 7 and 2013 支持单点触摸、对称双点触摸和两个触点的多点触摸。标准的手势识别器支持拖动、滚动、选择、双击、选择和保持动作,使用外部或者扩展识别器,则可以支持缩 放和旋转等手势。 手势功能通过 Toradex 的 Multi-touch Solutions 支持,电容式单点触摸和 USB HID触摸不支持手势。了解更多关于 Windows Embedded Compact 对手势的支持,请参考这里。
  • 热度 21
    2013-12-2 10:11
    1042 次阅读|
    0 个评论
     2013年11月26日---随着智能手机和平板电脑的快速普及,2013年触控产业维持了高速发展局面。依据DisplaySearch调研统计,2013年整体触控产业出货额将达到近314亿美金,同比增长近30%。然而由于触控产业竞争日益激烈,触控产业链已然加速产业整并。同时,部分业者亦致力于ITO取代材料技术,布局未来大尺寸触控市场。 应对激烈竞争,国内触控业者加速产业整合 2013年,尤其是下半年,整体触控产业的竞争不断加剧,触控模组价格亦发生明显下滑。除去触控产能扩产因素外,终端市场的演变实为重要促进因素。回顾2012年,千元智能机以及7吋低价平板电脑的崛起带动了了智能型移动设备的快速普及,并带动了触控模组出货规模的快速提升。而随着Android系统的日益成熟以及中低阶产品的性能的快速提升,2013年高阶智能型移动设备成长动能趋缓,产品低价化趋势明显。 以智能手机产品为例,尽管整体市场依旧保持了快速增长,然而由于现有产品已然可以满足多数消费者的日常需求,单纯的硬体升级改良对消费者的吸引力出现下滑,尤其是高价位的高阶智能手机市场受影响更为明显,成长动能趋缓。而中低阶智能手机产品则在中国及东南亚等发展中市场快速的拓展疆土,成为智能手机成长动能的重要来源。 图一、2011-2017年全球及中国各层级智能手机出货量对比(单位:百万台) Source: DisplaySearch 2013 China FPD Conference 由于受到终端产品价格定位影响,触控模组的价格空间进一步被压缩。参考触控模组价格BOM构成,触控业者除了提高自身产品技术能力以改善良率水准外,可藉由产业链整合压缩产品生产周期(lead time),降低生产成本,以维持既有的获利能力,同时也可透过产品规模效益,在日益严峻的产业竞争挑战中谋求生存空间。故而国内触控业者近期动作频频,纷纷进行产业整合,调整自身体质,谋求更大的市场空间,例如长信并购德普特,布局触控模组市场;信利签约台湾富元,稳定OGS sensor供给;欧菲光募资40亿元,强化中大尺寸触控产能,进军显示面板模组产业;莱宝高科引进日本凸版五代线彩膜设备,布局大尺寸OGS触控模组产能;星星科技并购深越光电、东山精密接手牧东科技、联合化工收购合力泰、京东方正式涉足触控产业等。触控产业开始由低阶产品的无序竞争模式步入规模化竞争格局,市场将进一步向具备技术优势及规模化优势的企业集中,而部分处于弱势的小型企业将面临淘汰出局的压力。   图二、触控模组BOM构成示意图 Source: DisplaySearch Quarterly Touch Panel Market Analysis Report   着眼未来大尺寸触控领域,ITO取代材料技术暂露头角 由于智能手机及平板电脑市场的高速成长动能正日益趋缓,2013年触控业者对触控笔记本市场充满期待,并积极扩充大尺寸触控产能。而由于受到终端产品售价过高,Windows8学习成本,PC业者渠道库存等诸多因素影响,2013年触控笔记本渗透率远远低于年初PC业者对触控笔记本20%左右渗透率的乐观预期。为此,触控大厂TPK已公布拟定停止新竹厂3.5代及4.5代生产线运作,并延缓平潭5.5代线设备装机时程,以期降低营运成本,应对触控笔记本需求低迷的局面。然而触控业者依然积极进行产业布局,为未来大尺寸触控领域崛起做好准备,其中以面板厂主导的SSG(Strengthen Sensor Glass)产品以及传统触控业者多有布局的ITO取代材料技术最为瞩目。 出于产品轻薄化的考量,Apple的平板电脑产品系列已全面导入GF2架构的薄膜式触控技术,并带动薄膜式触控技术在手机及平板电脑市场占据优势。然而由于受限于ITO film自身物理特性影响,薄膜式触控技术面阻值相对较高,应用于大尺寸触控领域时将面临极大挑战,同时,ITO线路较为脆弱,大尺寸薄膜式触控产品于制程作业中亦容易发生ITO线路断裂,产品良率面临挑战。因此,以传统薄膜式触控业者为主体,积极布局ITO取代材料,以期弥补其于大尺寸触控应用领域的不足。此外,采用新取代材料亦可降低金属铟等材料成本价格,同时藉由coating(涂布)、Gravure printing(凹版印刷)等制程工艺,降低设备投资,   提高原材料利用率,以达到降低成本的需求 目前主流ITO取代材料技术包含Metal Mesh(金属网格)、Silver Nanowire(纳米银线)、PEDOT:PSS(有机导电材料)、Carbon Nanotube(纳米碳管)及Graphene(石墨烯),其中短期内又以Metal Mesh及Silver Nanowire技术更具量产可行性,为多数触控业者所研究、采用,例如欧菲光采用基于银浆的Metal Mesh工艺制作薄膜式触摸产品,并于PC品牌端积极推动产品验证导入。  
  • 热度 14
    2013-5-13 16:42
    1379 次阅读|
    0 个评论
    Cypress TrueTouch® Touchscreen Solution Enables “Magic Touch” Feature for the 6.1-Inch Display in New Ascend Mate Smartphone from HUAWEI   Gen4 TrueTouch Controller Also Offers Industry Leading Water Rejection and Outstanding Performance in Noisy Environments SAN JOSE, Calif., April 18, 2013 – Cypress Semiconductor Corp. (Nasdaq: CY) today announced that its TrueTouch® Gen4 controllers enable the “Magic Touch” feature in the new Ascend Mate smartphone from HUAWEI, which boasts one of the world’s largest smartphone touchscreens at 6.1 inches. Magic Touch lets users accurately navigate the touchscreen even with thick gloves on, solving a persistent problem for customers in cold-weather climates. The Gen4 TrueTouch controller also enables the Ascend Mate to offer outstanding water rejection and unmatched touchscreen performance in the presence of electronic noise sources. The Magic Touch feature is enabled with patent-pending technology from Cypress available on Gen4 that is unavailable from other suppliers. The Gen4 family delivers an array of technologies the competition cannot match. It is the world’s only controller family with built-in 10V Tx to drive the touch panel at 10V. Because SNR is directly proportional to the voltage at which the panel is driven, this feature allows Cypress to sense smaller signals than the competitors in the presence of high noise sources. The Gen4 family also makes use of Cypress’s patented self plus mutual capacitance sensing technology. TrueTouch is the only solution with the ability to execute both self-capacitance and mutual-capacitance measurements in the same device—and switch dynamically between the two in application. These capabilities enable both the Magic Touch and water rejection features on the Ascend Mate. The HUAWEI Ascend Mate combines superior performance with a unique set of features, ensuring end customers have an optimal touchscreen user experience. Its screen-to-body ratio is 73%, one of the highest in the industry, maximizing viewing pleasure for emails, video and games. The 6.1-inch HD IPS+ LCD screen has a resolution of 1280 x 720 for unsurpassed clarity and color accuracy. The Ascend Mate is also very slim, with a thickness of just 6.5 mm at its narrowest part. "We’re excited to team with HUAWEI on this outstanding smartphone," said John Carey, Senior Director of TrueTouch Marketing at Cypress. “The Ascend Mate showcases many of the reasons that TrueTouch is the premier touchscreen solution in the industry.” Touch Leadership Cypress’s touch-sensing portfolio is the industry’s broadest and most well adopted, encompassing TrueTouch, CapSense®, and TrackPad solutions. The company’s IP portfolio is unmatched, including true, single-layer sensor solutions for dramatically reduced touchscreen costs and self and mutual capacitance sensing on the same chip that enables advanced features such as waterproofing, proximity sensing, support for 1-mm stylus, and hover. About TrueTouch Cypress’s TrueTouch technology provides the industry’s best noise immunity, highest signal to noise ratio (SNR), fastest refresh rates, lowest power consumption, and world’s best accuracy and linearity. The flexible TrueTouch solution allows customers to rapidly develop leading-edge solutions without having to buy turnkey modules. They have a choice of using touch sensors (glass or film) and LCDs from preferred partners, and can develop innovative mechanical designs ranging from flat to curved surfaces of varying thickness. In addition, TrueTouch devices offer Cypress’s legendary noise immunity with patented capacitive sensing technology that enables flawless operation in noisy RF and LCD environments. Additional TrueTouch information is available at touch.cypress.com. About Cypress Cypress delivers high-performance, mixed-signal, programmable solutions that provide customers with rapid time-to-market and exceptional system value. Cypress offerings include the flagship PSoC® 1, PSoC 3, PSoC 4, and PSoC 5 programmable system-on-chip families. Cypress is the world leader in capacitive user interface solutions including CapSense touch sensing, TrueTouch touchscreens, and trackpad solutions for notebook PCs and peripherals. Cypress is the world leader in USB controllers, which enhance connectivity and performance in a wide range of consumer and industrial products. Cypress is also the world leader in SRAM and nonvolatile RAM memories. Cypress serves numerous major markets, including consumer, mobile handsets, computation, data communications, automotive, industrial, and military. Cypress trades on the NASDAQ Global Select Market under the ticker symbol CY. Visit Cypress online at www.cypress.com. Or you can connect Cypress distributor WEIKENG www.weikeng.com.cn for technical support. spark.jia@weikeng.com.cn
  • 热度 17
    2013-3-11 20:56
    1634 次阅读|
    0 个评论
    FTDI 发布FT800,整合了TFT,MCU,电阻触摸,audio一体,可联络我QQ:1306014248,了解相关。 Targeted at QVGA and WQVGA resolution TFT displays with parallel RGB interface Dithering hardware provides 24-bit (true colour) support on an 18-bit interface 256k internal object memory Store up to 2000 objects in 8k byte display list Inbuilt controller supports 4-wire resistive touch panels PWM output for programmable display brightness Anti-aliasing support improves display perception Low-power - 35mA typical in active mode down, and 25uA in sleep mode Widgets (innovation mechanisms) allow easy creation of complex objects (e.g analog clocks) Integrated audio output - play beeps, tones or recorded audio SPI or I2C interface to system microcontroller Space saving 48LD QFN package
相关资源
  • 所需E币: 0
    时间: 2023-10-8 21:44
    大小: 665.51KB
    上传者: zhusx123
    RA2L1_E1_LQFP48TOUCH
  • 所需E币: 0
    时间: 2022-7-27 16:09
    大小: 7.25MB
    上传者: 陈晓光
    CA51F2系列芯片是基于1T8051内核的8位微控制器,通常情况下,运行速度比传统的8051芯片快10倍,性能更加优越。内置Flash程序存储器,可多次重复编程的特性,此系列芯片提供8/16/32K三种Flash容量供客户按照产品需求选择,给用户开发带来了极大的方便。不仅保留了传统8051芯片的基本特性,还集成了12BitADC、LCD/LED驱动、TouchKey、16BitPWM、UART、RTC、无刷直流电机驱动、乘除法器、低电压检测(LVD)等功能模块。支持IDLE、STOP和低速运行三种省电模式以适应不同功耗要求的应用。强大的功能及优越的抗干扰性能使其可广泛应用于各种车载音响、家用音响、小家电、蓝牙音箱、汽车电子、数码电机、运动器材、马达控制、医疗保健、仪器仪表、安防、电源控制、工业控制及门铃产品中。
  • 所需E币: 0
    时间: 2022-7-27 16:06
    大小: 1.92MB
    上传者: 陈晓光
    CA51F1系列芯片是基于1T8051内核的8位微控制器,通常情况下,运行速度比传统的8051芯片快10倍,性能更加优越。内置16KFlash程序存储器,可多次重复编程的特性,给用户开发带来了极大的方便。不仅保留了传统8051芯片的基本特性,还集成了12bitADC、TouchKey、16BitPWM、UART、I²C以及低电压检测(LVD)等功能模块。支持IDLE、STOP和低速运行三种省电模式以适应不同功耗要求的应用。
  • 所需E币: 1
    时间: 2022-7-18 23:04
    大小: 72.27KB
    上传者: Argent
    夹纸式TouchScreen
  • 所需E币: 5
    时间: 2019-12-27 19:46
    大小: 20.07MB
    上传者: rdg1993
    PSoC入门培训模块:如何使用PSoCExpress和FirstTouch入门工具……
  • 所需E币: 3
    时间: 2019-12-27 19:47
    大小: 33.94MB
    上传者: 238112554_qq
    PSoCDesigner5.0_101_利用PSoCFirstTouch入门工具介绍PSoCDesigner5.0……
  • 所需E币: 4
    时间: 2020-1-3 19:00
    大小: 1.44MB
    上传者: 2iot
    触摸屏资料收集4……
  • 所需E币: 5
    时间: 2020-1-3 19:00
    大小: 1.5MB
    上传者: quw431979_163.com
    触摸屏资料收集2……
  • 所需E币: 5
    时间: 2020-1-6 11:58
    大小: 31.7KB
    上传者: rdg1993
    可1~24键设计,电路简单……
  • 所需E币: 5
    时间: 2019-12-24 23:10
    大小: 380.62KB
    上传者: 238112554_qq
    本应用笔记介绍了一个基于恩智浦半导体LPC1100微控制器简单的电容式触摸设计的检测方法。……
  • 所需E币: 3
    时间: 2019-12-24 22:10
    大小: 96.89KB
    上传者: givh79_163.com
    Abstract:Touchscreensarenotanewconcept.Wherepreviouslytouchscreensweremerelydesignedtoreplacekeyboardsandmice,todaytheyconveyacompletelynewoperatingexperience.Featuringgreaterinteractionbetweentheuseranddevice,thisnew"touch"experiencehasbeenachievedbyacombinationofdifferenttechnologies.Thisarticleprovidesanoverviewofrecentadvancesintouch-screentechnologyMaxim>DesignSupport>AppNotes>A/DandD/AConversion/SamplingCircuits>APP5122Maxim>DesignSupport>AppNotes>Microcontrollers>APP5122Keywords:touchscreen,touchpanel,capacitivetouch,resistivetouch,haptics,mutualcapacitance,selfcapacitance,projectedcapacitive,hapticsactuatorSep07,2011APPLICATIONNOTE5122Touch-ScreenTechnologiesEnableGreaterInteractionBetweenUserandDeviceBy:RolandSandfuchsAbstract:Touchscreensarenotanewconcept.Wherepreviouslytouchscreensweremerelydesignedtoreplacekeyboardsandmice,todaytheyconveyacompletelynewoperatingexperience.Featuringgreaterinteractionbetweenthe……
  • 所需E币: 5
    时间: 2019-12-24 20:18
    大小: 55.13KB
    上传者: 978461154_qq
    摘要:本文讨论了未来的发展趋势,在智能手机和其它消费电子产品的设计。讨论侧重于整合降低成本,从而节省宝贵的PCB空间和驱动器的重要性。Maxim>DesignSupport>TechnicalDocuments>Tutorials>AudioCircuits>APP5290Maxim>DesignSupport>TechnicalDocuments>Tutorials>Power-SupplyCircuits>APP5290Maxim>DesignSupport>TechnicalDocuments>Tutorials>VideoCircuits>APP5290Keywords:smartphone,PowerSoC,TINI,audiocodec,TVcamera,Samsung,FlexSound,tactouch,touchscreenJan06,2012TUTORIAL5290HigherIntegrationDrivestheNewestGenerationsofSmartphonesJan06,2012Abstract:Thisarticlediscussesfuturetrendsinthedesignofsmartphonesandotherconsumerproducts.Thediscussionfocusesontheimportanceofintegration,whichsavesvaluablePCBspaceanddrives……
  • 所需E币: 4
    时间: 2019-12-24 19:47
    大小: 350.55KB
    上传者: 978461154_qq
    摘要:MAX1441接近和触摸传感器是专为电容式接近感应应用,包括汽车被动遥控车门开关(PRKE)。该传感器具有嵌入式快闪记忆体的2-K字必须与用户的应用程序固件编程。这个程序员开发,以便在生产环境中的MAX1441闪存编程。程序员不断轮询通信MAX1441的USB-JTAG接口。MAX1441器件一旦被发现,它会删除,程序,并确认在嵌入式快闪记忆体约3秒钟。然后,它会启动下MAX1441的投票站进行编程。可以启动应用程序的多个实例在同一台计算机上。Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>Automotive>APP5280Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>EnergyMeasurement&Metering>APP5280Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>Sensors>APP5280Keywords:passivekeylessentry,PKE,remotekeylessentry,RKE,signalconditioner,lowpower,proximitysensor,touchsensor,RFIDreaders,metertamperingpreventionDec21,2011APPLICATIONNOTE5280MAX1441ProximityandTouchSensorProgrammerUserManualBy:YoussofFathiDec21,2011Abstract:TheMAX1441proximityandtouchsensorisdesignedforcapacitiveproximitysensing……
  • 所需E币: 3
    时间: 2019-12-24 19:48
    大小: 208.2KB
    上传者: 978461154_qq
    摘要:机械错位和缩放因素导致的触摸屏面板(触摸屏控制器翻译)和(通常是一个液晶显示器)上安装触摸屏显示未来值之间的不匹配。本教程讨论如何校准触摸屏,以配合显示。Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>Automotive>APP5296Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>InterfaceCircuits>APP5296Maxim>DesignSupport>TechnicalDocuments>ApplicationNotes>MeasurementCircuits>APP5296Keywords:touchscreenpanels,touchscreencontrollers,touchscreen,touchpanels,N-pointcalibration,calibration,3-pointcalibration,touchsystems,resistiveMay07,2012APPLICATIONNOTE5296AnEasy-to-UnderstandExplanationofCalibrationinTouch-ScreenSystemsBy:FaisalTariqMay07,2012Abstract:Mechanicalmisalignmentandscalingfactorsleadtoamismatchbetweenthevaluescomingf……
  • 所需E币: 5
    时间: 2019-12-24 17:52
    大小: 1.19MB
    上传者: 二不过三
    Usethisdocumentasaguideonly.Theinformationcontainedinthisdocumentissubjecttochangewithoutnotice.Thisdocument,andallofitscontents,isprotectedunderInternationalandU.S.copyrightlaw.MicrochipTechnologytrademarks,patentsandcopyrightsaretheexclusivepropertyofMicrochipTechnologyInc.andmaynotbeusedwithouttheexpresswrittenconsentofMicrochipTechnologyInc.S:\CompanySharedFolders\PigData\MasterBinders\03_Products\TSHARC_Chips\TSHARC-12schip\TSHARC-12S_Chip_Application_Guide_090714.docxTSHARC-12STouchScreenMicrocontrollerApplicationGuideVer.1.23.3V-5vDC20-PinSOICorSSOP12……
  • 所需E币: 4
    时间: 2020-1-10 09:48
    大小: 648.78KB
    上传者: 978461154_qq
    TouchpaneltechnologyTouchpaneltechnologyTouchscreenapplicationsaredevelopingintoamajordisplaymarketnicheastheyrampuptheirutilizationofLiquidCrystalDisplay(LCD)flatpanelsintotheirdesigns.Touchtechnologiesallowaninterfacetoaccessacomputer’sdatabasewithoutrelyingonthetraditionalkeyboard-mouseinterface.Thisisadvantageousinapplicationsinwhichthecomputerhasbeenprogrammedtoallowtheusertostepthroughamenusystemtofindtheanswertheyseek,i.e.,directionsfromthecarrentalorusinganATM.WhyTouchTechnology?Touchisoneofthesimplest,mostinstinctive,anduniversalhumanactions.Thereareseveralreasonstousetouchtechnologies,whichincludelimitinganend-user'saccesstoacomputerinkiosk-typeapplicationsaswellasharshenvironm……
  • 所需E币: 3
    时间: 2020-1-15 12:05
    大小: 121.22KB
    上传者: 2iot
    TouchLens技术资料,TouchLens介绍……
  • 所需E币: 3
    时间: 2020-1-15 12:49
    大小: 16.5KB
    上传者: rdg1993
    触摸屏供应商的一点资料,对新人有帮助,关于touchpanel……
  • 所需E币: 4
    时间: 2020-1-15 14:12
    大小: 1.37MB
    上传者: givh79_163.com
    TouchPanel介绍与应用……
  • 所需E币: 4
    时间: 2020-1-15 16:35
    大小: 79KB
    上传者: givh79_163.com
    Touchpanel成品检验规范Touchpanel成品检验规范||||||||||修改状态:0||ITO成品检验项目和要求|||检验项|检验标准|检验方法|工具|备注|||目|||||||电气性|1.无断路与短路||短\断路测试||||能|||仪|||||2.最大回路电阻符合《生产规格|找最长回路之按键测其|万用表|||||书》或客户要求|回路电阻||||||3.距阵式线路间绝缘阻抗≥20MΩ|测所有引出线间绝缘电|短\断路测试|||||、15V|阻|仪|||……