🐻
berkeley
  • #Despair
  • 16A/B
    • Thevenin and Norton Equivalence
    • Resistive Touchscreen
    • Trilateration and Correlation
    • RC Circuits & Transient Analysis
  • 61B
    • Testing
    • References in Java
    • Linked Lists in Java
    • Implementation Inheritance
    • Comparables and Iterators
    • Casting
    • Lists and Sets
    • Asymptotics
    • Trees
    • Hashing
    • PriorityQueue and Heap
    • Graphs, Tree Traversals
    • Tries
    • Sorting
  • Discrete Mathematics
    • Sets + Mathematical Notation
    • Logic and Proofs
    • Induction
    • Cryptography/RSA
    • Modular Arithmetic
    • Discrete Probability
  • Linear Algebra
    • Linear Equations
    • Matrix Algebra
    • Determinants
    • Vector Spaces
    • Eigenvectors and Eigenvalues
    • Projections and Orthogonality
    • SVD/PCA
  • Math 275 — Ordinary Differential Equations
    • Math 275 — Overview
    • Modeling via Differential Equations
    • Linear Systems
  • INTEGBI 35AC
    • Humans Came From Fish
    • Evolution's History
    • Typology
    • The Human Diaspora
  • 170
    • Basics
    • Divide and Conquer
    • Fast Fourier Transform
    • Graphs
    • Greedy
  • 61C
    • Pointers and Memory
    • Floating Point
    • Compliation, Assembly, Linking, Loading
    • RISC-V, Assembly
Powered by GitBook
On this page

Was this helpful?

  1. 16A/B

Resistive Touchscreen

Adapted from EECS16A Note 12, 13, 14

PreviousThevenin and Norton EquivalenceNextTrilateration and Correlation

Last updated 4 years ago

Was this helpful?

1D Model

We can simplify the touchscreen to a 1D structure in order to gain a better understanding of how it works.

We want to calculate the LtouchL_{touch}Ltouch​ in order to find the position of the touchpoint. As we know, it, I=dQdtI = \frac{dQ}{dt}I=dtdQ​ , where QQQ and III are charge and current respectively. We measure current in amps, which amounts to one coulomb per second.

The resistance of a conductive material is given by the equation R=ρLAR = \rho \frac{L}{A}R=ρAL​ , where rho is the resistivity (a number unique to each material) L is the length and A is the cross-sectional area.

As you can see, you write the resistances of the two resistors in terms of the resistivity, which brings length into the equation, allowing you to solve for LtouchL_{touch}Ltouch​ using node voltage analysis. Simply solve for umidu_{mid}umid​ in terms of R1R_1R1​ and R2R_2R2​, and then you can plug the resistivities in.

Credit: EECS16A Note 12
Credit: EECS16A Note 12