Thread Closed

Noise handling algorithm in 8 wire touch screen

 
Share Thread Thread Tools
Apr25-07, 07:40 PM   #1
 

Noise handling algorithm in 8 wire touch screen


Noise handling algorithm in 8 wire touch screen
here's how a touch screen work http://focus.ti.com/lit/an/slaa298/slaa298.pdf


Problem:
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 shouldnt 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.




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
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> King Richard III found in 'untidy lozenge-shaped grave'
>> Google Drive sports new view and scan enhancements
>> Researcher admits mistakes in stem cell study
Apr25-07, 11:59 PM   #2
 
Recognitions:
Gold Membership Gold Member
Homework Helper Homework Help
Science Advisor Science Advisor
Have you considered averaging a FIFO buffer?
Apr26-07, 12:05 AM   #3
 
Quote by NoTime View Post
Have you considered averaging a FIFO buffer?
yes i did average
averaging does help reduce "jumping mouse", but it still causes the problem
Apr26-07, 01:06 AM   #4
 
Recognitions:
Homework Helper Homework Help

Noise handling algorithm in 8 wire touch screen


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?
Apr26-07, 02:01 AM   #5
 
Quote by mezarashi View Post
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

what analysis should i do?
Apr26-07, 02:07 AM   #6
 
Recognitions:
Homework Helper Homework Help
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.
Apr26-07, 02:34 AM   #7
 
Quote by mezarashi View Post
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?
Apr26-07, 02:46 AM   #8
 
make a dithering algorithim?
Apr26-07, 02:47 AM   #9
 
Recognitions:
Homework Helper Homework Help
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/filte..._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.
Apr26-07, 03:10 AM   #10
 
thanks for the ideas, ok i will check these out
Thread Closed
Thread Tools


Similar Threads for: Noise handling algorithm in 8 wire touch screen
Thread Forum Replies
concept of resistive touch screen, anyone an IEEE member? Engineering, Comp Sci, & Technology Homework 2
Johnson noise & Shot noise Advanced Physics Homework 4
Definition of dynamic noise and observational noise in finance Set Theory, Logic, Probability, Statistics 1
Question about handling General Engineering 1
NAN handling in C Computing & Technology 5