BasicX
Discussion forum for the BasicX family of microcontroller chips.
Search Results for "adc"
Post a new Thread
"liam.basicx" - Mar 19 2008
--- In b...@yahoogroups.com, Tom Becker wrote:
>
> > ... it's not entirely clear from my cursory check of their website,
> but does the X-35 and X-01 support floating p... 
"David E. Basile" - Mar 9 2008
Tom,
=20
I tried that and that is where it is set now. Actually I'm getting two
extra characters ENQ and 255. To "fix" it for now I just filter the buffer
thru a non-alpanume... 
"James R. Parish" - Feb 26 2008
What I would do is run the pulses through a simple transistor and RC
networking feeding an OPAMP turning them into an Analog Voltage that
could be measured on any of the 8 ADC pi... 
antoniod_arienzo - Jan 28 2008
Hello, my new group!!!
I write from Italy, so excuse my grammar mistake...
I' ve already a nice question for you...
How can I pass the contents of ADC's registers (ADCH and ADCL... 
femme_pacita - Dec 5 2007
Ok, I added my program to the code. This s it
dim outputBuffer(1 to 10) as byte '1-byte output buffer
dim inputBuffer(1 to 13) as byte '1-byte input buffer
'declare an array o... 
Tom Becker - Sep 29 2007
> ... three resistors of 1 MOhm each...
The values are too large for the input impedance of the ADC; Atmel
recommends that the source impedance be on the order of 10k or low... 
sturgessb - Sep 14 2007
Im really struggling to get this to work with ADC accel unit (im using
5dof board from sparkfun).
Anyone sucessfully got this working using ADC gyros and
accellerometers rathe... 
Thad Larson - Aug 12 2007
Did you try connecting the RX data pin to a BX24 input pin?
Com3_Out ----> TX 'Transmit the byte
RX ----------------> Com3_In 'Receive the byte
Com3_in -------> Debug.Pri... 
alex_salvi - Jul 11 2007
I'm building a balancing bot and I just saw this new gyro by Analog
Devices that will come out in a few days. There are three choices for
sensitivity settings as opposed to on... 
sturgessb - Jun 28 2007
I see this code is for PWM generating sensors, have you tried this
code with ADC type?
Cheers
Ben
... 
paulcounter1 - Apr 5 2007
I am in the process of designing an ultrasonic position sensor, which
I will use to periodically re-zero the drift on an accelerometer
based position sensor.
I am trying to de... 
Nathaniel Barshay - Mar 13 2007
Hey,
I'm having a problem with ADC on pins 13, 19, and 20. When connected
to something they yield an output of around 900-910, and when allowed
to float they output 1024. The ... 
Conrad A***** - Mar 9 2007
Even a bare bones PID program would work. Where ADC is used, then
the PID process is used and I can vary the gain for each. I am sure
I can figure out the rest. Anyone know ... 
MUX [4 Articles]
davidsousamendes - Mar 5 2007
Hello
I need to multiplex one of the ADC pins of BasicX in order to receive
signals from 4 analog devices...(Of course using 2 digital pins for
address purposes)
Can anyone s... 
Tom Becker - Feb 23 2007
I have a small pile of BX-24s that I've set aside as I've suspected
that each had developed an apparently bad pin. I have surely smoked a
few processors but others, I'm sure, ar... 
Tom Becker - Dec 7 2006
> ... anything greater requires a Gaussian elimination or singular
> value decomposition routine. Does the µM-FPU chip have matrix
> inversion functions for matrices greater t... 
Tom Becker - Oct 29 2006
> ... MCC USB DAQ modules?
Nope, but I've used several other Measurement Computing adapters and ADC
boards. I've had good success with them all, although the bit-level
pr... 
Tom Becker - Sep 29 2006
In an attempt to predict imminent battery depletion, I tried
differentiating the battery voltage samples to determine the discharge
slope. That didn't work, principally becaus... 
anakatalan - Sep 26 2006
Hello, I'm a new user of Bx24 and I have ploblems with the instruction
CpuSleep. In my program I am using com1, and com3, and 2 pins are ADC. I
would like to call CpuSleep afte... 
ricinecwh - Aug 7 2006
I am a basic beginner
I have a small problem and hope that it would not be too disturbed.
When I put the varied voltage into any ADC pin,
i dont know why the other ADC pin are... 
"ese...@" - Jul 25 2006
Hi Ellen,
Something sounds amiss, I think you are right in expecting better stability form your system.
I would suggest a 2 step approach:
(disconnect the GP2D12)
1) Make a... 
nuepatrick - Jul 7 2006
Please disreguard the previous post
Here is a better version of what I need to do. The only problem I am
having now is that the displayed value is not tracking the measured
... 
nuepatrick - Jul 7 2006
I am trying to measure 10 - 15 volts. I have the following program
'--------------------------------------------------------------------
' This program will measure the battery... 
npoz0 - May 16 2006
Hello,
I was hoping someone might have some idea what is going on(that might
want to help out :) ). I'm using the basicx to sample at about 25Hz 2
channels, and write this is... 
Tom Becker - May 3 2006
Tom, your suggestion to try an H11F1 optoFET to switch caps was
helpful; thanks. For the PLL, I was able to find a fixed filter that
works very well without switching, fortunate... 
npoz0 - Mar 20 2006
Tom,
Thanks again for your quick reply. The timestamp I would like to keep
track of would not be to prove the sampling rate, it would be for data
processing later on. I am wr... 
Tom Becker - Mar 18 2006
> ... the size of the ticks gets very large...
I suggested that you tag sample pairs with a timestamp so that you could
prove, or analyze, the sampling rate later. Since you ... 
npoz0 - Mar 12 2006
Hey Tom,
Thank you for your help and suggestions. I took out the ascii
conversion. and I'm currently using this code to write to my sdcard:
Do Until (GetPin(8) = 0)
ADCdat... 
psyclopedia - Mar 8 2006
Queues are our friend. They're great for moving data around
efficiently. Do they only work for byte types? I can compile an
application using integers in a queue array and I ... 
psyclopedia - Feb 1 2006
I've been struggling with this one for a few days, to no avail.
I have a bunch of analog sensors that I read with GetADC(). Each
sensor going to a seperate pin. Some of the s... 
pha555 - Jan 31 2006
I think you got your answer, along with a bit more than necessary.
But, here is a simple piece of code.
Sub Main()
Dim ADVal as Integer
Do
ADVal = GetADC(13)
... 
npoz0 - Jan 23 2006
Tom,
thank you for your suggestion, albeit I thought that was what I was
sort of doing right now, as I look until my sample rate of 0.2s is
hit, then initiate sampling.... 
G. Kramer Herzog - Jan 4 2006
--- In basicx@basi..., Jepsen Electronics & Acoustics Ltd
wrote:
>
> There is another way using only 1 I/O line and some resistors
> Mike Perks wrote:
... 
arhodes19044 - Jan 1 2006
--- In basicx@basi..., "naimead" wrote:
>
> But nowadays there should be a proper sensor to do this
job,shouldn't
> it be?
Will, _I_ have a quad... 
Jeff - Nov 29 2005
Hi,
I'm having trouble getting the ADCToCom1 function working properly. I
get ASCII gibberish as an output but the ASCII characters do not
translate properly into the i... 
pjc309430 - Nov 29 2005
Very true Don. Thanks. I forgot about that, though it says right
there in the datasheet.
I tried a 16-bit modification of Tom's routines and it works fine.
Switched bac... 
Don Kinzer - Nov 22 2005
--- In basicx@basi..., Mikael Karstikko wrote:
> What is the easiest way of reading tacho signals from a normal car?
Some electronic ignition distributers ... 
arhodes19044 - Nov 17 2005
--- In basicx@basi..., "Tom De Weyer" wrote:
> Is it possible to measure a voltage higher then 5v?
Yes use a voltage divider to reduce the voltage ... 
Mario Loeffel - Nov 15 2005
I have just recently discovered the BasicX-24p and I'm wondering if
anyone knows how it compares to an OOPic II+ performance wise.
I currently have a system implemented ... 
Mike Perks - Nov 15 2005
cc0x1 wrote:
> I need to count pulses from three different sources while at the same
> time reading a continuous analog input on the bx-24. now i know that
> using puls... 
|
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
next