Using PropPad as a handheld oscilloscope.
tripp
Posts: 52
I just wrote some code that turns PropPad into a oscilloscope.
http://forums.parallax.com/showthread.php?p=877803
http://www.youtube.com/watch?v=UPyoDwEIXpk
I think the screen update is ok at 78mS, but probably it can be faster?
For now i just send plot·data via USB.
But since the propeller can use 2pins as a AD converter i will try that, but is 2.5MHz fast enough?
Would someone want to help me with the code if i post it? to make a useful oscilloscope?
' At 80MHz the ADC/DAC sample resolutions and rates are as follows:
'
' sample·· sample··············
' bits······ rate··············
'
·············
' 5······ 2.5 MHz··············
' 6····· 1.25 MHz··············
' 7······ 625 KHz··············
' 8······ 313 KHz·
·
http://forums.parallax.com/showthread.php?p=877803
http://www.youtube.com/watch?v=UPyoDwEIXpk
I think the screen update is ok at 78mS, but probably it can be faster?
For now i just send plot·data via USB.
But since the propeller can use 2pins as a AD converter i will try that, but is 2.5MHz fast enough?
Would someone want to help me with the code if i post it? to make a useful oscilloscope?
' At 80MHz the ADC/DAC sample resolutions and rates are as follows:
'
' sample·· sample··············
' bits······ rate··············
'
·············
' 5······ 2.5 MHz··············
' 6····· 1.25 MHz··············
' 7······ 625 KHz··············
' 8······ 313 KHz·
3.3V  1nF 150kΩ adcpin ─────┳──╋─────────── Analog In 100kΩ 1nF fbpin ─────┘  Vss
·
Comments
repeat 320
1a. erase old pixel
1b. measure
2. write new pixel and store
This way you should get much higher refresh-rates.