![]() |
Forum Index : Microcontroller and PC projects : PicoMite VGA - Colour in 640x480
![]() ![]() |
|||||
Author | Message | ||||
Geoffg![]() Guru ![]() Joined: 06/06/2011 Location: AustraliaPosts: 3285 |
Peter is about to release the final V5.05.04 and the new manual will come out with that. Geoff Geoff Graham - http://geoffg.net |
||||
Amnesie Guru ![]() Joined: 30/06/2020 Location: GermanyPosts: 639 |
Cool, glad to hear that it comes with an updated manual :) |
||||
crez![]() Senior Member ![]() Joined: 24/10/2012 Location: AustraliaPosts: 152 |
using 2022-03-20_051532_PicoMiteVGA Option BASE 0 Dim integer n=12 Dim integer y Dim float samp1(n-1) 'room for n a/d samples Dim float samp2(n-1) 'room for n a/d samples Dim float samp3(n-1) 'room for n a/d samples ADC open 20000,1 ADC start samp1() 'fill array1 with samples from gp26 'ADC start samp1(),samp2(),samp3() 'fill 3 arrays from gp26,27,28 For Y= 0 To n-1 Print samp1(Y), Next Y End works fine, with all values in samp1() non-zero. But if I get data from 3 pins into 3 arrays Option BASE 0 Dim integer n=12 Dim integer y Dim float samp1(n-1) 'room for n a/d samples Dim float samp2(n-1) 'room for n a/d samples Dim float samp3(n-1) 'room for n a/d samples ADC open 20000,3 ADC start samp1(),samp2(),samp3() 'fill 3 arrays from gp26,27,28 For Y= 0 To n-1 Print samp1(Y), Next Y End the last three samples in samp1() are all 0. Is this a bug? |
||||
matherp Guru ![]() Joined: 11/12/2012 Location: United KingdomPosts: 10240 |
Yes, cut-and-paste typo. Will fix. Thanks for the report and diagnostic |
||||
crez![]() Senior Member ![]() Joined: 24/10/2012 Location: AustraliaPosts: 152 |
Thanks Peter, It also seems OK with ADC open n,2. I only see the problem with three inputs |
||||
![]() ![]() |
![]() |
![]() |
The Back Shed's forum code is written, and hosted, in Australia. | © JAQ Software 2025 |