i have an arduino sketch that takes in analog data from 3 potentiometers writing to an external EEPROM. When I read back the data I print out the address number and analog value so that in the serial monitor I get something like :
0: 221
1: 548
2: 1023
3: 221
4: 548
5: 1023
6: 221
7: 548
8: 1023
etc
I need to use the numbers I'm getting in a processing sketch eventually so I would like to write some code in either python/processing that will sort every potentiometer's data separately so I can easily transfer it later to a Processing sketch.
Any help would greatly be appreciated, I'm a beginner coder.