










| INDADD | EQU 0 | ;INDIRECT ADRESSING | |
| REGISTER | |||
| RTCC | EQU 1 | ;COUNTER | |
| PC | EQU 2 | ;PROGRAM COUNTER | |
| STATUS | EQU 3 | ;STATUS REGISTER | |
| FSR | EQU 4 | ;FILE SELECT REGISTER | |
| PORTA | EQU 5 | ;PORT A | |
| PORTB | EQU 6 | ;PORT B | |
| GEN | EQU 7 | ;PORT C NOT USED, | |
| SO GENERAL PURPOSE | |||
| REG | |||
| CARRY | EQU 0 | ;BIT 0 IS CARRY | |
| DCARRY | EQU 1 | ;BIT 1 IS DIGIT CARRY | |
| Z | EQU 2 | ;BIT 2 IS ZERO BIT | |
| PDOWN | EQU 3 | ;BIT 3 IS POWER DOWN BIT | |
| WATCHD | EQU 4 | ;BIT 4 IS WATCH DOG | |
| TIMEOUT BIT | |||
| W | EQU 0 | ;RESULT DESTINATION TO | |
| W REGISTER | |||
| F | EQU 1 | ;RESULT DESTINATION TO | |
| F REGISTER | |||
| BIT0 | EQU 0 | ||
| BIT1 | EQU 1 | ||
| BIT2 | EQU 2 | ||
| BIT3 | EQU 3 | ||
| BIT4 | EQU 4 | ||
| BIT5 | EQU 5 | ||
| BIT6 | EQU 6 | ||
| BIT7 | EQU 7 | ||
| ORG 00H | |||
| START | movlw | #00H | |
| tris | PORTB | ;Port B is eight bit output port | |
| movlw | #0FH | ;Port A is four bit input port | |
| tris | PORTA | ||
| goto | MAIN | ||
| MAIN | clrwdt | ||
| movlw | #00H | ;All outputs off initially | |
| movwf | PORTB | ||
| nop | ;timing delay | ||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| AGAIN | clrwdt | ||
| mowf | PORTA, W | ;Read input port | |
| andlw | #0CH | ;Mask off upper 2 bits of nybble | |
| xorlw | #0CH | ;Check for touch detection | |
| btfsc | STATUS, Z | ||
| goto | TOUCH | ;Call touch detection code | |
| goto | AGAIN | ||
| XM | movlw | #31H | ;output code for X measurement | 
| movlw | PORTB | ||
| nop | ;Timing delay | ||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| XLOOP | clrwt | ;Reset WDT | |
| movf | PORTA, W | ;Read input port | |
| andlw | #0CH | ;Mask off all bits except 2 | |
| msb of nybble | |||
| xorlw | #08H | ;Detect y measurement | |
| btfsc | STATUS, Z | ||
| goto | YM | ;Call y measurement code | |
| movf | PORTA, W | ;Read input port | |
| andlw | #0H | ;Check for touch detection | |
| btfsc | STATUS, Z | ||
| goto | TOUCH | ;Call touch detection code | |
| goto | XLOOP | ;continue looking for | |
| y measurement | |||
| phase | |||
| YM | movlw | #2AH | ;output code for Y measurement | 
| movwf | PORTB | ||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| YLOOP | clrwdt | ||
| movf | PORTA, W | ;Read input port | |
| andlw | #0CH | ;Mask off upper 2 bits of nybble | |
| xorlw | #0CH | ;Check for touch detection | |
| btfsc | STATUS, Z | ||
| goto | TOUCH | ;Call touch detection code | |
| movf | PORTA, W | ;Read input port | |
| andlw | #03H | ;Mask off all bits except 2 lsb | |
| xlorlw | #01H | ;Detect x measurement | |
| btfsc | STATUS, Z | ||
| goto | XM | ;Call x measurement code | |
| goto | YLOOP | ;look for touch detection phase | |
| TOUCH | movlw | #3EH | ;output code for touch detection | 
| movwf | PORTB | ||
| nop | ;Timing delay | ||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| nop | |||
| TLOOP | clrwdt | ;Reset WDT | |
| movf | PORTA, W | ;Read input port | |
| andlw | #03H | :Mask off all bits except 2 lsb | |
| xorlw | #01H | ;Detect x measurement | |
| btfsc | STATUS, Z | ||
| goto | XM | ;Call x measurement code | |
| movf | PORTA, W | ;Read input port | |
| andlw | #0CH | ;Mask off all bits except 2 | |
| msb of nybble | |||
| xorlw | #08H | ;Detect y measurement | |
| btfsc | STATUS, Z | ||
| goto | YM | ; Call y measurement code | |
| goto | TLOOP | ;continue looking for | |
| x measurement | |||
| ORG 01FFH | |||
| RESET | goto | START | ;Reset vector back to start | 
| of code. | |||
| END | |||
| Application Number | Priority Date | Filing Date | Title | 
|---|---|---|---|
| GBGB9708464.4AGB9708464D0 (en) | 1997-04-25 | 1997-04-25 | Converter for resistive touchscreens | 
| GB9708464 | 1997-04-25 | ||
| PCT/GB1998/001094WO1998049650A1 (en) | 1997-04-25 | 1998-04-15 | Converter for resistive touchscreens | 
| Publication Number | Publication Date | 
|---|---|
| US6373475B1true US6373475B1 (en) | 2002-04-16 | 
| Application Number | Title | Priority Date | Filing Date | 
|---|---|---|---|
| US09/403,563Expired - Fee RelatedUS6373475B1 (en) | 1997-04-25 | 1998-04-15 | Converter for resistive touchscreens | 
| Country | Link | 
|---|---|
| US (1) | US6373475B1 (en) | 
| EP (1) | EP0976096B1 (en) | 
| JP (1) | JP2001522493A (en) | 
| AU (1) | AU7060898A (en) | 
| CA (1) | CA2287351C (en) | 
| DE (1) | DE69804204T2 (en) | 
| GB (1) | GB9708464D0 (en) | 
| TW (1) | TW455807B (en) | 
| WO (1) | WO1998049650A1 (en) | 
| Publication number | Priority date | Publication date | Assignee | Title | 
|---|---|---|---|---|
| US20020097228A1 (en)* | 2001-01-23 | 2002-07-25 | Mobigence, Inc. | Expanded touch panel display | 
| US6593916B1 (en)* | 2000-11-03 | 2003-07-15 | James L. Aroyan | Touchscreen having multiple parallel connections to each electrode in a series resistor chain on the periphery of the touch area | 
| US6611257B1 (en)* | 2000-09-29 | 2003-08-26 | Rockwell Automation Technologies, Inc. | Automatic detection of touch plane type | 
| US6661408B2 (en)* | 2001-03-23 | 2003-12-09 | Eturbotouch Technology Inc. | Touch screen capable of isolating noise signals | 
| US6753853B1 (en)* | 2000-09-29 | 2004-06-22 | Rockwell Automation Technologies, Inc. | Low power dissipation touch plane interface circuit | 
| US6765558B1 (en)* | 2000-09-29 | 2004-07-20 | Rockwell Automation Technologies, Inc. | Multiple touch plane compatible interface circuit and method | 
| WO2005091322A1 (en)* | 2004-03-18 | 2005-09-29 | Eleksen Limited | Sensor assembly | 
| US6980201B1 (en) | 2000-09-29 | 2005-12-27 | Rockwell Automation Technologies, Inc. | Minimum move touch plane scanning method and device | 
| US20070229477A1 (en)* | 1998-05-15 | 2007-10-04 | Ludwig Lester F | High parameter-count touchpad controller | 
| US20090153497A1 (en)* | 2007-12-14 | 2009-06-18 | Samsung Electronics Co., Ltd. | User interface device and input element | 
| US20090254869A1 (en)* | 2008-04-06 | 2009-10-08 | Ludwig Lester F | Multi-parameter extraction algorithms for tactile images from user interface tactile sensor arrays | 
| US20100044121A1 (en)* | 2008-08-15 | 2010-02-25 | Simon Steven H | Sensors, algorithms and applications for a high dimensional touchpad | 
| US20100073486A1 (en)* | 2008-09-24 | 2010-03-25 | Huei Chuan Tai | Multi-dimensional input apparatus | 
| US20110055722A1 (en)* | 2009-09-02 | 2011-03-03 | Ludwig Lester F | Data Visualization Environment with DataFlow Processing, Web, Collaboration, Advanced User Interfaces, and Spreadsheet Visualization | 
| US20110066933A1 (en)* | 2009-09-02 | 2011-03-17 | Ludwig Lester F | Value-driven visualization primitives for spreadsheets, tabular data, and advanced spreadsheet visualization | 
| US20110202889A1 (en)* | 2010-02-12 | 2011-08-18 | Ludwig Lester F | Enhanced roll-over, button, menu, slider, and hyperlink environments for high dimensional touchpad (htpd), other advanced touch user interfaces, and advanced mice | 
| US8477111B2 (en) | 2008-07-12 | 2013-07-02 | Lester F. Ludwig | Advanced touch control of interactive immersive imaging applications via finger angle using a high dimensional touchpad (HDTP) touch user interface | 
| US8509542B2 (en) | 2009-03-14 | 2013-08-13 | Lester F. Ludwig | High-performance closed-form single-scan calculation of oblong-shape rotation angles from binary images of arbitrary size and location using running sums | 
| US8702513B2 (en) | 2008-07-12 | 2014-04-22 | Lester F. Ludwig | Control of the operating system on a computing device via finger angle using a high dimensional touchpad (HDTP) touch user interface | 
| US8754862B2 (en) | 2010-07-11 | 2014-06-17 | Lester F. Ludwig | Sequential classification recognition of gesture primitives and window-based parameter smoothing for high dimensional touchpad (HDTP) user interfaces | 
| US8797288B2 (en) | 2011-03-07 | 2014-08-05 | Lester F. Ludwig | Human user interfaces utilizing interruption of the execution of a first recognized gesture with the execution of a recognized second gesture | 
| US9052772B2 (en) | 2011-08-10 | 2015-06-09 | Lester F. Ludwig | Heuristics for 3D and 6D touch gesture touch parameter calculations for high-dimensional touch parameter (HDTP) user interfaces | 
| US9605881B2 (en) | 2011-02-16 | 2017-03-28 | Lester F. Ludwig | Hierarchical multiple-level control of adaptive cooling and energy harvesting arrangements for information technology | 
| US9626023B2 (en) | 2010-07-09 | 2017-04-18 | Lester F. Ludwig | LED/OLED array approach to integrated display, lensless-camera, and touch-screen user interface devices and associated processors | 
| US9632344B2 (en) | 2010-07-09 | 2017-04-25 | Lester F. Ludwig | Use of LED or OLED array to implement integrated combinations of touch screen tactile, touch gesture sensor, color image display, hand-image gesture sensor, document scanner, secure optical data exchange, and fingerprint processing capabilities | 
| US9823781B2 (en) | 2011-12-06 | 2017-11-21 | Nri R&D Patent Licensing, Llc | Heterogeneous tactile sensing via multiple sensor types | 
| US9950256B2 (en) | 2010-08-05 | 2018-04-24 | Nri R&D Patent Licensing, Llc | High-dimensional touchpad game controller with multiple usage and networking modalities | 
| US10146427B2 (en) | 2010-03-01 | 2018-12-04 | Nri R&D Patent Licensing, Llc | Curve-fitting approach to high definition touch pad (HDTP) parameter extraction | 
| US10430066B2 (en) | 2011-12-06 | 2019-10-01 | Nri R&D Patent Licensing, Llc | Gesteme (gesture primitive) recognition for advanced touch user interfaces | 
| Publication number | Priority date | Publication date | Assignee | Title | 
|---|---|---|---|---|
| JP4622432B2 (en)* | 2004-09-30 | 2011-02-02 | セイコーエプソン株式会社 | Touch panel control unit | 
| JP6727072B2 (en)* | 2016-08-24 | 2020-07-22 | ローム株式会社 | Resistive touch panel control circuit, touch input device | 
| Publication number | Priority date | Publication date | Assignee | Title | 
|---|---|---|---|---|
| US5228562A (en) | 1991-09-09 | 1993-07-20 | Gm Nameplate, Inc. | Membrane switch and fabrication method | 
| EP0631256A2 (en) | 1993-06-21 | 1994-12-28 | NCR International, Inc. | Digitizer input device | 
| WO1996042068A1 (en) | 1995-06-12 | 1996-12-27 | Samsung Electronics Co., Ltd. | Digitizer controller | 
| US6163313A (en)* | 1997-12-12 | 2000-12-19 | Aroyan; James L. | Touch sensitive screen and method | 
| US6278444B1 (en)* | 1998-08-21 | 2001-08-21 | Geoffrey D. Wilson | Low current four-wire interface for five-wire resistive touch-screen | 
| Publication number | Priority date | Publication date | Assignee | Title | 
|---|---|---|---|---|
| US5228562A (en) | 1991-09-09 | 1993-07-20 | Gm Nameplate, Inc. | Membrane switch and fabrication method | 
| EP0631256A2 (en) | 1993-06-21 | 1994-12-28 | NCR International, Inc. | Digitizer input device | 
| WO1996042068A1 (en) | 1995-06-12 | 1996-12-27 | Samsung Electronics Co., Ltd. | Digitizer controller | 
| US6163313A (en)* | 1997-12-12 | 2000-12-19 | Aroyan; James L. | Touch sensitive screen and method | 
| US6278444B1 (en)* | 1998-08-21 | 2001-08-21 | Geoffrey D. Wilson | Low current four-wire interface for five-wire resistive touch-screen | 
| Publication number | Priority date | Publication date | Assignee | Title | 
|---|---|---|---|---|
| US8743068B2 (en) | 1998-05-15 | 2014-06-03 | Lester F. Ludwig | Touch screen method for recognizing a finger-flick touch gesture | 
| US9304677B2 (en) | 1998-05-15 | 2016-04-05 | Advanced Touchscreen And Gestures Technologies, Llc | Touch screen apparatus for recognizing a touch gesture | 
| US8866785B2 (en) | 1998-05-15 | 2014-10-21 | Lester F. Ludwig | Sensor array touchscreen recognizing finger flick gesture | 
| US8878807B2 (en) | 1998-05-15 | 2014-11-04 | Lester F. Ludwig | Gesture-based user interface employing video camera | 
| US8878810B2 (en) | 1998-05-15 | 2014-11-04 | Lester F. Ludwig | Touch screen supporting continuous grammar touch gestures | 
| US8717303B2 (en)* | 1998-05-15 | 2014-05-06 | Lester F. Ludwig | Sensor array touchscreen recognizing finger flick gesture and other touch gestures | 
| US20070229477A1 (en)* | 1998-05-15 | 2007-10-04 | Ludwig Lester F | High parameter-count touchpad controller | 
| US8743076B1 (en) | 1998-05-15 | 2014-06-03 | Lester F. Ludwig | Sensor array touchscreen recognizing finger flick gesture from spatial pressure distribution profiles | 
| US7551163B1 (en) | 2000-09-29 | 2009-06-23 | Rockwell Automation Technologies, Inc. | Minimum move touch plane scanning method and device | 
| US6765558B1 (en)* | 2000-09-29 | 2004-07-20 | Rockwell Automation Technologies, Inc. | Multiple touch plane compatible interface circuit and method | 
| US6980201B1 (en) | 2000-09-29 | 2005-12-27 | Rockwell Automation Technologies, Inc. | Minimum move touch plane scanning method and device | 
| US6753853B1 (en)* | 2000-09-29 | 2004-06-22 | Rockwell Automation Technologies, Inc. | Low power dissipation touch plane interface circuit | 
| US6611257B1 (en)* | 2000-09-29 | 2003-08-26 | Rockwell Automation Technologies, Inc. | Automatic detection of touch plane type | 
| US6593916B1 (en)* | 2000-11-03 | 2003-07-15 | James L. Aroyan | Touchscreen having multiple parallel connections to each electrode in a series resistor chain on the periphery of the touch area | 
| US20020097228A1 (en)* | 2001-01-23 | 2002-07-25 | Mobigence, Inc. | Expanded touch panel display | 
| US6621486B2 (en)* | 2001-01-23 | 2003-09-16 | Mobigence, Inc. | Expanded touch panel display | 
| US6661408B2 (en)* | 2001-03-23 | 2003-12-09 | Eturbotouch Technology Inc. | Touch screen capable of isolating noise signals | 
| GB2426825B (en)* | 2004-03-18 | 2008-06-25 | Eleksen Ltd | Sensor assembly | 
| US7554051B2 (en) | 2004-03-18 | 2009-06-30 | Peratech Limited | Sensor assembly | 
| US20070132736A1 (en)* | 2004-03-18 | 2007-06-14 | Eleksen Ltd. | Sensor assembly | 
| GB2426825A (en)* | 2004-03-18 | 2006-12-06 | Eleksen Ltd | Sensor assembly | 
| WO2005091322A1 (en)* | 2004-03-18 | 2005-09-29 | Eleksen Limited | Sensor assembly | 
| US20090153497A1 (en)* | 2007-12-14 | 2009-06-18 | Samsung Electronics Co., Ltd. | User interface device and input element | 
| US9019237B2 (en) | 2008-04-06 | 2015-04-28 | Lester F. Ludwig | Multitouch parameter and gesture user interface employing an LED-array tactile sensor that can also operate as a display | 
| US20090254869A1 (en)* | 2008-04-06 | 2009-10-08 | Ludwig Lester F | Multi-parameter extraction algorithms for tactile images from user interface tactile sensor arrays | 
| US8643622B2 (en) | 2008-07-12 | 2014-02-04 | Lester F. Ludwig | Advanced touch control of graphics design application via finger angle using a high dimensional touchpad (HDTP) touch user interface | 
| US8638312B2 (en) | 2008-07-12 | 2014-01-28 | Lester F. Ludwig | Advanced touch control of a file browser via finger angle using a high dimensional touchpad (HDTP) touch user interface | 
| US8542209B2 (en) | 2008-07-12 | 2013-09-24 | Lester F. Ludwig | Advanced touch control of interactive map viewing via finger angle using a high dimensional touchpad (HDTP) touch user interface | 
| US8702513B2 (en) | 2008-07-12 | 2014-04-22 | Lester F. Ludwig | Control of the operating system on a computing device via finger angle using a high dimensional touchpad (HDTP) touch user interface | 
| US8477111B2 (en) | 2008-07-12 | 2013-07-02 | Lester F. Ludwig | Advanced touch control of interactive immersive imaging applications via finger angle using a high dimensional touchpad (HDTP) touch user interface | 
| US8894489B2 (en) | 2008-07-12 | 2014-11-25 | Lester F. Ludwig | Touch user interface supporting global and context-specific touch gestures that are responsive to at least one finger angle | 
| US8604364B2 (en) | 2008-08-15 | 2013-12-10 | Lester F. Ludwig | Sensors, algorithms and applications for a high dimensional touchpad | 
| US20100044121A1 (en)* | 2008-08-15 | 2010-02-25 | Simon Steven H | Sensors, algorithms and applications for a high dimensional touchpad | 
| US20100073486A1 (en)* | 2008-09-24 | 2010-03-25 | Huei Chuan Tai | Multi-dimensional input apparatus | 
| US8509542B2 (en) | 2009-03-14 | 2013-08-13 | Lester F. Ludwig | High-performance closed-form single-scan calculation of oblong-shape rotation angles from binary images of arbitrary size and location using running sums | 
| US8639037B2 (en) | 2009-03-14 | 2014-01-28 | Lester F. Ludwig | High-performance closed-form single-scan calculation of oblong-shape rotation angles from image data of arbitrary size and location using running sums | 
| US8826113B2 (en) | 2009-09-02 | 2014-09-02 | Lester F. Ludwig | Surface-surface graphical intersection tools and primitives for data visualization, tabular data, and advanced spreadsheets | 
| US8826114B2 (en) | 2009-09-02 | 2014-09-02 | Lester F. Ludwig | Surface-curve graphical intersection tools and primitives for data visualization, tabular data, and advanced spreadsheets | 
| US20110066933A1 (en)* | 2009-09-02 | 2011-03-17 | Ludwig Lester F | Value-driven visualization primitives for spreadsheets, tabular data, and advanced spreadsheet visualization | 
| US20110055722A1 (en)* | 2009-09-02 | 2011-03-03 | Ludwig Lester F | Data Visualization Environment with DataFlow Processing, Web, Collaboration, Advanced User Interfaces, and Spreadsheet Visualization | 
| US9665554B2 (en) | 2009-09-02 | 2017-05-30 | Lester F. Ludwig | Value-driven visualization primitives for tabular data of spreadsheets | 
| US20110202889A1 (en)* | 2010-02-12 | 2011-08-18 | Ludwig Lester F | Enhanced roll-over, button, menu, slider, and hyperlink environments for high dimensional touchpad (htpd), other advanced touch user interfaces, and advanced mice | 
| US20110202934A1 (en)* | 2010-02-12 | 2011-08-18 | Ludwig Lester F | Window manger input focus control for high dimensional touchpad (htpd), advanced mice, and other multidimensional user interfaces | 
| US9830042B2 (en) | 2010-02-12 | 2017-11-28 | Nri R&D Patent Licensing, Llc | Enhanced roll-over, button, menu, slider, and hyperlink environments for high dimensional touchpad (HTPD), other advanced touch user interfaces, and advanced mice | 
| US10146427B2 (en) | 2010-03-01 | 2018-12-04 | Nri R&D Patent Licensing, Llc | Curve-fitting approach to high definition touch pad (HDTP) parameter extraction | 
| US9626023B2 (en) | 2010-07-09 | 2017-04-18 | Lester F. Ludwig | LED/OLED array approach to integrated display, lensless-camera, and touch-screen user interface devices and associated processors | 
| US9632344B2 (en) | 2010-07-09 | 2017-04-25 | Lester F. Ludwig | Use of LED or OLED array to implement integrated combinations of touch screen tactile, touch gesture sensor, color image display, hand-image gesture sensor, document scanner, secure optical data exchange, and fingerprint processing capabilities | 
| US8754862B2 (en) | 2010-07-11 | 2014-06-17 | Lester F. Ludwig | Sequential classification recognition of gesture primitives and window-based parameter smoothing for high dimensional touchpad (HDTP) user interfaces | 
| US9950256B2 (en) | 2010-08-05 | 2018-04-24 | Nri R&D Patent Licensing, Llc | High-dimensional touchpad game controller with multiple usage and networking modalities | 
| US9605881B2 (en) | 2011-02-16 | 2017-03-28 | Lester F. Ludwig | Hierarchical multiple-level control of adaptive cooling and energy harvesting arrangements for information technology | 
| US9442652B2 (en) | 2011-03-07 | 2016-09-13 | Lester F. Ludwig | General user interface gesture lexicon and grammar frameworks for multi-touch, high dimensional touch pad (HDTP), free-space camera, and other user interfaces | 
| US10073532B2 (en) | 2011-03-07 | 2018-09-11 | Nri R&D Patent Licensing, Llc | General spatial-gesture grammar user interface for touchscreens, high dimensional touch pad (HDTP), free-space camera, and other user interfaces | 
| US8797288B2 (en) | 2011-03-07 | 2014-08-05 | Lester F. Ludwig | Human user interfaces utilizing interruption of the execution of a first recognized gesture with the execution of a recognized second gesture | 
| US9052772B2 (en) | 2011-08-10 | 2015-06-09 | Lester F. Ludwig | Heuristics for 3D and 6D touch gesture touch parameter calculations for high-dimensional touch parameter (HDTP) user interfaces | 
| US9823781B2 (en) | 2011-12-06 | 2017-11-21 | Nri R&D Patent Licensing, Llc | Heterogeneous tactile sensing via multiple sensor types | 
| US10042479B2 (en) | 2011-12-06 | 2018-08-07 | Nri R&D Patent Licensing, Llc | Heterogeneous tactile sensing via multiple sensor types using spatial information processing | 
| US10429997B2 (en) | 2011-12-06 | 2019-10-01 | Nri R&D Patent Licensing, Llc | Heterogeneous tactile sensing via multiple sensor types using spatial information processing acting on initial image processed data from each sensor | 
| US10430066B2 (en) | 2011-12-06 | 2019-10-01 | Nri R&D Patent Licensing, Llc | Gesteme (gesture primitive) recognition for advanced touch user interfaces | 
| Publication number | Publication date | 
|---|---|
| WO1998049650A1 (en) | 1998-11-05 | 
| JP2001522493A (en) | 2001-11-13 | 
| DE69804204T2 (en) | 2002-11-21 | 
| EP0976096B1 (en) | 2002-03-13 | 
| EP0976096A1 (en) | 2000-02-02 | 
| CA2287351C (en) | 2006-07-04 | 
| DE69804204D1 (en) | 2002-04-18 | 
| AU7060898A (en) | 1998-11-24 | 
| TW455807B (en) | 2001-09-21 | 
| CA2287351A1 (en) | 1998-11-05 | 
| GB9708464D0 (en) | 1997-06-18 | 
| Publication | Publication Date | Title | 
|---|---|---|
| US6373475B1 (en) | Converter for resistive touchscreens | |
| US10908710B2 (en) | Active stylus and capacitive position detection system | |
| US6278444B1 (en) | Low current four-wire interface for five-wire resistive touch-screen | |
| US20010013855A1 (en) | Resistive and capacitive touchpad | |
| CN101861561B (en) | Pointing and data entry input device | |
| US10088960B2 (en) | Sensor stack with opposing electrodes | |
| US5831597A (en) | Computer input device for use in conjunction with a mouse input device | |
| US6762752B2 (en) | Dual function input device and method | |
| US4587378A (en) | Two-layer touch tablet | |
| US8619054B2 (en) | Two dimensional position sensor | |
| EP0631256B1 (en) | Digitizer input device | |
| KR101101581B1 (en) | Multi point touch sensing device | |
| KR20070032924A (en) | Capacitive touch sensor | |
| CN101089802A (en) | 2D position sensor | |
| JP2007018515A (en) | Two-dimensional position sensor | |
| GB2490765A (en) | Touch screen with integrated transparent conductive material resistors forming low pass filters | |
| WO2004001968A1 (en) | Capacitive touch sensor architecture with unique sensor bar addressing | |
| US20220004268A1 (en) | System for detecting a clicked state and an unclicked state of a button for capacitive touch device | |
| US20070195069A1 (en) | Pen apparatus, system, and method of assembly | |
| KR20140048091A (en) | Modular connector for touch sensitive device | |
| JP2017223671A (en) | Force sensor array | |
| US20190114019A1 (en) | Capacitive touch sensing with conductivity type determination | |
| WO2006002661A1 (en) | Keypad signal input apparatus | |
| US6151013A (en) | Electrical probe-position sensor | |
| US12443293B2 (en) | Stylus detection system having touch object detecting mode and stylus detecting mode | 
| Date | Code | Title | Description | 
|---|---|---|---|
| AS | Assignment | Owner name:RAYCHEM LIMITED, UNITED KINGDOM Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:CHALLIS, MICHAEL;REEL/FRAME:010543/0634 Effective date:19991107 | |
| AS | Assignment | Owner name:TYCO ELECTRONICS UK LTD., UNITED KINGDOM Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:RAYCHEM LIMITED;REEL/FRAME:012729/0862 Effective date:20010121 | |
| FPAY | Fee payment | Year of fee payment:4 | |
| FPAY | Fee payment | Year of fee payment:8 | |
| AS | Assignment | Owner name:ELO TOUCH SOLUTIONS, INC., CALIFORNIA Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:TYCO ELECTRONICS UK LTD;REEL/FRAME:028357/0910 Effective date:20120531 | |
| AS | Assignment | Owner name:CREDIT SUISSE AG, NEW YORK Free format text:PATENT SECURITY AGREEMENT (FIRST LIEN);ASSIGNOR:ELO TOUCH SOLUTIONS, INC.;REEL/FRAME:028486/0917 Effective date:20120601 | |
| AS | Assignment | Owner name:CREDIT SUISSE AG, NEW YORK Free format text:PATENT SECURITY AGREEMENT (SECOND LIEN);ASSIGNOR:ELO TOUCH SOLUTIONS, INC.;REEL/FRAME:028486/0941 Effective date:20120601 | |
| REMI | Maintenance fee reminder mailed | ||
| LAPS | Lapse for failure to pay maintenance fees | ||
| STCH | Information on status: patent discontinuation | Free format text:PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362 | |
| FP | Lapsed due to failure to pay maintenance fee | Effective date:20140416 | |
| AS | Assignment | Owner name:ELO TOUCH SOLUTIONS, INC., CALIFORNIA Free format text:RELEASE BY SECURED PARTY;ASSIGNOR:CREDIT SUISSE AG, AS COLLATERAL AGENT;REEL/FRAME:044346/0810 Effective date:20171031 Owner name:ELO TOUCH SOLUTIONS, INC., CALIFORNIA Free format text:RELEASE BY SECURED PARTY;ASSIGNOR:CREDIT SUISSE AG, AS COLLATERAL AGENT;REEL/FRAME:044346/0790 Effective date:20171031 |