Can any microcntlr read capacitivite touch events

iam trying to read touch events by microcotroller from android mobile phones touch panels.
but the problem is i have no deep knowlege about lowlevel languages and hardware .iam a python developer.

1 . is there any projects that already successfully read capactitve touchscreen touch events from android mobilephones .
2. what kind of electrical flow is happening between touch panel and controller ic.
4. please write all information you know about it. because it will help me in this research

Welcome to the forum

Which Arduino board do you have ?

hi. thank you .. i have Digispark ATTiny85 USB Development Board

This looks pretty good:

I'm inclined to believe (but not certain) that by the time you get to something with the complexity of an Android touch-screen, you're no longer dealing with bare capacitive sensing, but rather with interface to some sort of higher-level controller on the display controller that is intimately attached to the screen.
I don't understand the workings of a full high-res x/y touch screen, but I'm pretty sure it requires more pins than are present on a tiny85.

There are microcontrollers that run python, and there's a library for talking to (at least some) touch-screens:

But Interfacing to an android phone touch-screen may involve running some code on the android that translates touch-screen events into some easier-to-read message (serial? BT? Internet?) on your Arduino.

Welcome!

To answer your question No, however many can. Also a lot depends on the capacitance sensor.

have a look at esp32-touch-pins

e.g. ESP32 connected to a 12_way_keypad

test code

// ESP32 Touch Test reading Microchip_12_way_keypad

// from https://lastminuteengineers.com/esp32-basics-capacitive-touch-pins/

#define threshold 20  // test for a keypress column
#define thresholdROW 17  // test for a keypress row

void setup() {
  Serial.begin(115200);
  delay(1000);  // give me time to bring up serial monitor
  Serial.println("ESP32 Touch Test \n"
                 "Microchip_Microchip_12_way_keypad");
}

void loop() {
  Serial.print("Touch: ");
  Serial.print(touchRead(4));  // get touch value on GPIO 4
  Serial.print("  ");
  Serial.print(touchRead(15));  // get touch value on GPIO 15
  Serial.print("  ");
  Serial.print(touchRead(32));  // get touch value on GPIO 32
  Serial.print("  ");
  Serial.print(touchRead(33));
  Serial.print("  ");
  Serial.print(touchRead(27));
  Serial.print("  ");
  Serial.print(touchRead(14));
  Serial.print("  ");
  Serial.print(touchRead(12));
  Serial.print("  ");
  //Serial.print(touchRead(13));
  //Serial.print("  ");
  int column=-100, row=0, key=0;
  if (touchRead(4) < threshold) column=0;
  if (touchRead(15) < threshold) column=1;
  if (touchRead(32) < threshold) column=2;
  if (touchRead(33) < threshold) column=3;
  if (touchRead(27) < thresholdROW) row=2;
  if (touchRead(14) < thresholdROW) row=1;
  if (touchRead(12) < thresholdROW) row=0;
  //if (touchRead(13) < threshold) row=3;
  Serial.printf(" column %d row %d", column, row);
  key =column + row*4;
  if(key>=0)Serial.printf(" key %d\n", key);
  else Serial.println(" no key pressed");
  delay(1000);
}

some test results showing the sensor readings and the key decoding

ESP32 Touch Test 
Microchip_Microchip_12_way_keypad
Touch: 19  35  34  33  21  22  14   column 0 row 0 key 0
Touch: 19  35  33  33  21  21  14   column 0 row 0 key 0
Touch: 19  35  35  34  21  22  14   column 0 row 0 key 0
Touch: 39  17  34  33  21  22  13   column 1 row 0 key 1
Touch: 39  16  34  32  22  23  13   column 1 row 0 key 1
Touch: 38  16  33  32  22  23  14   column 1 row 0 key 1
Touch: 39  16  35  33  22  24  14   column 1 row 0 key 1
Touch: 39  36  17  33  23  25  13   column 2 row 0 key 2
Touch: 39  36  16  32  23  24  13   column 2 row 0 key 2
Touch: 39  36  17  33  23  24  13   column 2 row 0 key 2
Touch: 38  35  34  15  21  22  13   column 3 row 0 key 3
Touch: 38  35  34  16  22  24  13   column 3 row 0 key 3
Touch: 39  35  35  17  23  24  13   column 3 row 0 key 3
Touch: 39  35  34  17  22  22  14   column 3 row 0 key 3
Touch: 17  35  34  34  22  13  28   column 0 row 1 key 4
Touch: 16  36  33  32  22  12  28   column 0 row 1 key 4
Touch: 16  35  34  34  22  12  28   column 0 row 1 key 4
Touch: 16  35  33  33  22  12  28   column 0 row 1 key 4
Touch: 16  36  35  33  22  12  28   column 0 row 1 key 4
Touch: 38  19  34  32  22  13  26   column 1 row 1 key 5
Touch: 39  18  34  32  22  14  27   column 1 row 1 key 5
Touch: 39  18  34  32  22  13  27   column 1 row 1 key 5
Touch: 38  18  34  32  22  13  27   column 1 row 1 key 5
Touch: 38  18  34  32  22  13  27   column 1 row 1 key 5
Touch: 39  18  34  33  22  13  27   column 1 row 1 key 5
Touch: 39  35  18  33  22  15  28   column 2 row 1 key 6
Touch: 39  36  18  33  22  15  28   column 2 row 1 key 6
Touch: 38  35  18  33  22  14  28   column 2 row 1 key 6
Touch: 39  35  34  18  22  13  28   column 3 row 1 key 7
Touch: 39  35  34  18  22  12  28   column 3 row 1 key 7
Touch: 39  35  34  18  22  12  28   column 3 row 1 key 7
Touch: 18  35  35  34  13  23  28   column 0 row 2 key 8
Touch: 17  35  35  33  12  23  29   column 0 row 2 key 8
Touch: 18  35  34  32  13  23  28   column 0 row 2 key 8
Touch: 18  35  34  33  13  23  28   column 0 row 2 key 8
Touch: 38  19  35  33  13  23  28   column 1 row 2 key 9
Touch: 38  19  34  33  14  24  28   column 1 row 2 key 9
Touch: 38  19  34  33  13  23  28   column 1 row 2 key 9
Touch: 39  36  17  33  13  23  28   column 2 row 2 key 10
Touch: 39  35  17  32  13  23  28   column 2 row 2 key 10
Touch: 39  35  17  32  13  23  28   column 2 row 2 key 10
Touch: 39  36  35  19  12  23  28   column 3 row 2 key 11

thank,you guys. if my dev board not enough then i am willing to buy another .

hi horace . thank you for the code. but i have no idea from where i start.

i have a touchpanel in my phone and i want to detect touch from it.
there is many wires coming out from touchpanel. how can i identify the wires.
i mean which is input line which is output.etc.

can you upload a photo of the touch panel?