I am trying to use a 128x240 GLCD driven by t6963 and a resistive touchscreen. When touchscreen and the frame are far apart, everything goes well but when I put them together it starts sending touch signals. Should I use a spacer between them?
Asked
Active
Viewed 62 times
2
-
which micro controller are you using? – Aug Oct 07 '13 at 14:14
-
Did you try grounding the metal frame? – Ron J. Oct 07 '13 at 14:16
-
@Aug ATMega16 is the micro – EdwardAshley Oct 07 '13 at 14:23
-
@RonJ. Yes it is well grounded – EdwardAshley Oct 07 '13 at 14:23
1 Answers
0
Basically this problem arises when you use falling edge of you AVR micro for touch detection. Use Low level interrupt instead. This guarantees that the touch has lasted enough and removes the noise interferences

Aug
- 1,561
- 6
- 28
- 63
-
I set it to low level interrupt and now works fine. What was the reason? – EdwardAshley Oct 07 '13 at 14:24
-
I said in the answer, This makes sure that the interrupt lasts until the interrupt routine executed. – Aug Oct 07 '13 at 14:28