Noise handling algorithm in 8 wire touch screen

Click For Summary

Discussion Overview

The discussion revolves around the challenges of noise handling in an 8 wire touch screen, particularly focusing on the variability of ADC readings when a touch pen is stationary. Participants explore various methods to mitigate cursor drift caused by noise, including filtering techniques and algorithmic approaches.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant describes the problem of inconsistent ADC readings leading to cursor drift and proposes a boundary circle solution, which has limitations for slow movements and requires adjustment over time.
  • Another participant suggests using a FIFO buffer for averaging, which has been attempted but does not fully resolve the issue.
  • Some participants note that noise filtering is complex, with many effective algorithms being proprietary, and recommend experimenting with basic filtering techniques.
  • There is a suggestion to analyze the signal in the frequency domain using the Discrete Fourier Transform (DFT) to identify noise characteristics.
  • A low-pass filter is proposed as a potential solution, though its effectiveness remains uncertain based on previous attempts at averaging.
  • One participant expresses the need for guidance on programming a frequency analysis algorithm, seeking clarity on the necessary analysis and expected outcomes.
  • Another participant encourages searching for existing frequency analysis programs and filter implementations available online.

Areas of Agreement / Disagreement

Participants express various opinions on the effectiveness of different noise handling techniques, with no consensus on a definitive solution. The discussion includes multiple competing views on the best approach to take.

Contextual Notes

Participants acknowledge limitations in the current hardware setup and the challenges of implementing advanced filtering techniques without existing DSP capabilities on the microcontroller.

Who May Find This Useful

This discussion may be useful for individuals working on touch screen technology, noise filtering in digital signals, or those interested in practical applications of signal processing techniques.

hanhao
Messages
20
Reaction score
0
Noise handling algorithm in 8 wire touch screen
here's how a touch screen work http://focus.ti.com/lit/an/slaa298/slaa298.pdfProblem:
when the touch pen is stationary on a point and reading ADC values from a touch screen using the micro controller, the ADC values are never the same
eg, 1st reading might be 500, 2nd reading is 510, 3rd is 505. This causes the the cursor to drift about the touch point, not something nice for the user . caps are already in place. it's a standard schematic so hardware shouldn't be a problem.

Proposed solution:
Now what i did was to create a boundary circle around the point, effectively locking all other bad readings into the circle.

http://img263.imageshack.us/img263/8210/circlejy5.jpg

http://img266.imageshack.us/img266/5989/circlehf0.jpg
but the problem is that
- for slow moving touch pen speed movements, due to this boundary circle, the cursor jumps from 1 circle to another. very ugly and it disallows slow movement.
- the size of the boundary circle has to be expanded when the touch screen wears out because of more noise

does anyone have a better solution?
thanks in advance
- hanhao
 
Last edited by a moderator:
Physics news on Phys.org
Have you considered averaging a FIFO buffer?
 
NoTime said:
Have you considered averaging a FIFO buffer?

yes i did average
averaging does help reduce "jumping mouse", but it still causes the problem
 
Noise filtering is a relatively complex subject in my opinion. If I recall, most of the better algorithms are patented or kept secret by the companies and organizations that created them.

My suggestion here is to just try all the basic filtering techniques you have as for any digital signal. I assume you have no chance of improving the performance of the ADC at the circuit level. Is it possible to convert a reasonable sample of your data to the Fourier domain using the DFT and do some analysis of the signal there?
 
mezarashi said:
Noise filtering is a relatively complex subject in my opinion. If I recall, most of the better algorithms are patented or kept secret by the companies and organizations that created them.

My suggestion here is to just try all the basic filtering techniques you have as for any digital signal. I assume you have no chance of improving the performance of the ADC at the circuit level. Is it possible to convert a reasonable sample of your data to the Fourier domain using the DFT and do some analysis of the signal there?

the micro controller takes ADC samples from a waveform like this, very highly zoomed in
http://img133.imageshack.us/img133/9835/sampleir1.jpg
what analysis should i do?
 
Last edited by a moderator:
It is difficult to do any sort of filtering other than some sort of averaging filter in the time domain. You should do a frequency domain analysis. Do any of your DSP programs support a Discrete Fourier Transform? A low-pass filter might help.
 
mezarashi said:
It is difficult to do any sort of filtering other than some sort of averaging filter in the time domain. You should do a frequency domain analysis. Do any of your DSP programs support a Discrete Fourier Transform? A low-pass filter might help.

although averaging does reduce the problem, it did not give much of an effective result. mouse cursor drifts lesser, but the drifting is still there.

on the micro controller there is no frequency analysis feature, unless i program it myself. if i were to program a frequency analysis algorithm, what would be the algorithm for it? what analysis is needed to be done? how do i obtain a usable result from this analysis?
 
make a dithering algorithm?:blushing:
 
Well first of all, scour the internet for a frequency analysis program. There's bound to be something free out there. You'll need the graph to get a good look at where the noise is and what you can filter.

Then you can probably implement your own filters, but again, the internet is available. Search for an implementation of the type of filter you would need. For example if you see from the frequency domain that most of your signal is of low frequency and there's a noise spike in another band, a low-pass filter might be suitable. Googling for: c implementation low pass filter, I get:

http://ccrma.stanford.edu/~jos/filters/Definition_Simplest_Low_Pass.html

P.S. Oh, I'm talking from a results point of view here. If the purpose is to learn, then yeah, it'd be better you do all of this yourself. It will really reinforce your Digital Signals Processing knowledge.
 
Last edited:
  • #10
thanks for the ideas, ok i will check these out :wink:
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
5K
  • · Replies 8 ·
Replies
8
Views
5K