Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

basicx · Discussion list for the BasicX family of microcontroller chips

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 2221
  • Category: Microcontrollers
  • Founded: Aug 11, 1999
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 22220 - 22249 of 23507   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
22220 ryan_autet Send Email Jun 28, 2007
11:51 pm
Hi I have an issue i want to call this call this sub routine once how ever no matter how i do it with this if then statment it allways calls it twice... has...
22221 Tom Becker
b19063 Send Email
Jun 29, 2007
2:19 pm
... What surrounds this, Ryan? No way this code repeats by itself. A Do While or Do Until might somehow be suspect, but not an If. Look outside that code. Tom...
22222 vtol@...
maxvtol Send Email
Jul 3, 2007
11:43 am
I'm am mixing some PWM signals and storing them as global variables (about 50 variables) to be used in different modules. I can store them as integers, but...
22223 mechatronicsccc Send Email Jul 6, 2007
3:36 am
I know in the basic stamp I could output a number out to 8 outputs and these outputs are connected to LEDs and it would give it out in binary. Can I do this...
22224 Mechatronics At Camde...
mechatronicsccc Send Email
Jul 6, 2007
3:52 am
I2c is addressed. Or every device is addressed to talk to it and it is one direction at a time http://www.embedded.com/story/OEG20010718S0073 SPI Your need...
22225 njepsen@...
neil_jepsen Send Email
Jul 6, 2007
6:11 am
Yes. Read up on registers. Port A is pins 13 - 20. Port C is pins 5 - 12 For example register.ddrA = bx0111_0000 will set pin 13 low, and pins 14-16 high. ...
22226 David Sousa Mendes
davidsousame... Send Email
Jul 6, 2007
11:17 am
Yes, sure I have used such idea with my students. Just use Putpin (pin number, BXoutputhigh) Make sure you connect a 400ohm resitor in series with the LED ...
22227 kirklovewell Send Email Jul 6, 2007
10:32 pm
I have found some old messages that reference an OEM downloader application that works with the BX-24. Is this still available, and if so, where would one go...
22228 Tom Becker
b19063 Send Email
Jul 6, 2007
11:32 pm
... An obsoleted OEM downloader application was removed two years ago when its functions became available in command-line options of BasicX.exe v2.1, I think. ...
22229 Tom Becker
b19063 Send Email
Jul 7, 2007
12:05 am
Sorry, and this: http://tech.groups.yahoo.com/group/basicx/message/18100 Tom...
22230 Tom Becker
b19063 Send Email
Jul 7, 2007
11:37 am
... from integers to singles then back to integers when I do the math... Three issues: speed, space and range/resolution: - obviously, not converting is faster...
22231 Don Kirby
psyclopedia Send Email
Jul 8, 2007
6:18 pm
Tom, I've uploaded the BX OEM downloader to the files section, under BasicX Tools. It's an improvement over having to install the full IDE, but still not what...
22232 maxvtol Send Email Jul 9, 2007
10:10 pm
I'm trying to capture some pulses from a model RC receiver. I want to capture the number of transitions with CountTransitions (to figure out the number of...
22233 Tom Becker
b19063 Send Email
Jul 9, 2007
11:41 pm
const NumberOfICEdges as byte = 12 ' 6 pulses Dim PulseTrain(1 to NumberOfICEdges) as New UnsignedInteger works here. Interestingly, though, Public...
22234 maxvtol Send Email Jul 10, 2007
12:22 am
Tom, Thanks for your quick reply. The 12 in your trial is the variable I want the CountTransitions function to set. This way I could use a 7 channel or a 9...
22235 Tom Becker
b19063 Send Email
Jul 10, 2007
1:01 am
... Ah. Do you mean you want to assign the Dim length at run time after sampling input data? In the normal sense, you can't do that; the array space is...
22236 maxvtol Send Email Jul 10, 2007
1:52 am
Thanks ever so much Tom, That's exactly what I was trying to do. Your suggestion worked. I didn't realize the array size was set at compile time. Joe PS Thanks...
22237 Tom Becker
b19063 Send Email
Jul 10, 2007
5:33 pm
I was incorrect about the Vex standard pulse widths, which I said were 25% short; I had not included the high period of the pulse cycle to determine the...
22238 sturgessb Send Email Jul 11, 2007
5:19 pm
Hi Guys Im having a problem where the need to read 5 channels of PWM is causing my control loop to run very slowly (for obvious reasons). So I would like to...
22239 alex_salvi Send Email Jul 11, 2007
10:14 pm
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...
22240 Tom Becker
b19063 Send Email
Jul 12, 2007
1:33 am
... http://www.analog.com/en/prod/0%2C2877%2CADIS16255%2C00.html Very nice features, but US$55! Not inexpensive, but rate gyros aren't cheap yet; still, an...
22241 Don Kirby
psyclopedia Send Email
Jul 13, 2007
9:24 am
There's another method available to read PWM signals. A simple RC circuit can convert the PWM to voltage, which you can then read with GetADC. The longer the...
22242 Tom Becker
b19063 Send Email
Jul 13, 2007
11:58 pm
FYI, Harbor Freight sells a 4" "Table Saw" that comes with a 1mm-thick 4" diamond disk. It makes easy straight cuts in ExpressPCB material, which has...
22243 m_l_newell Send Email Jul 14, 2007
12:29 am
Ben, Check Al Willam's PAKs http://www.awce.com/compare.htm There might be one that could help. Mark ... causing my control loop to ... thinking of perhaps 5...
22244 maxvtol Send Email Jul 15, 2007
11:02 pm
Ben, I'm by no means an expert on the BasicX-24, but I have tried using I2C on this stamp. My understanding is that it is not a hardware I2C and you have to...
22245 sturgessb Send Email Jul 16, 2007
12:33 am
Hi Joe So is simulating I2C is software much slower than hardware I2C? Ben...
22246 maxvtol Send Email Jul 16, 2007
12:33 am
I'm trying to read a pulsewidth using InputCapture in a looping task. I want to speed the frequency of the output pulse, so I am using PulseOut in a different...
22247 Tom Becker
b19063 Send Email
Jul 16, 2007
1:40 am
... Both InputCapture and PulseOut use Timer1. You could share Timer1 between two tasks with a semaphore, but all that would do is assure exclusive use of the...
22248 maxvtol Send Email Jul 16, 2007
2:33 am
Yes, I'm trying to read the PPM signal for 5 channels off a hacked RC receiver. I want to mix the signals and put them out to 12 channels. In my example below,...
22249 Tom Becker
b19063 Send Email
Jul 16, 2007
3:36 am
... and 8 msec. Not a trivial task. I suspect you will need additional hardware which can probably be steered by the processor at 125-250Hz if you can get the...
Messages 22220 - 22249 of 23507   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help