hi, I pulled out my old BX24 to play with controlling a servo, and I am having some problems with it. I have a both a regular analog servo and a new digital...
Problem solved, I was under powering the system with just 220mA, once I put the servo on its own power supply at 550mA it works just fine. Thanks, Michael ... ...
Is the servo running from the same power supply? The digital servo may take more current and cause the BX24 to reset. David ... I am ... and ... when ... with ...
I had a similar issue once... I turned out the power supply does not produce enough current for both the BX24 and the servo. (approx .5a) And while I could...
... Hello and Good Evening, I am curious to know if you have received any answer and help on your post. I am today in the same situation than you. I have...
Hello, I would like to come back on this issue of X10 Command with BasicX- 24 because I have a lot of problem to find the proper support and proper answers to...
Hi, I? never have any experience with X10 but I used BX24 for all my project but reading your email it looks like you do not understand the X10. My advice to...
Patrick, I never used X10 Way back when, there was an X10 project called BX24-AHT, you could also do a quick search for that too. more on a web search. look...
Hi, Thanks for your reply and help. I am happy to see that I am not the only one reading this forum. What I call the BasicX is the BX24p-u processor which is...
Hello Ian, Thanks for your reply and support. I saw these lines from Dave Houston and he say that we should send 2 commands in fact, one for the HouseCode...
Patrick, I can tell you that NetMedia support never received your emails. When did you send them? What is your question? Are you using this code? : 'House ID ...
I'm just coming back to my BasicX-24 having dabbled with various other controllers, corrupted disks and various other events... I remember problems with...
Hi Everybody, I've messed with Basic Stamps for a while and have upgraded to BasicX products, primarily the BX24 Development Station. Unfortunately, I'm...
weird... All of what you describe is also happening with me.. The "Halting BasicX" pop-up disapears but usually show-up elsewhere if you do Alt-Tab... The...
Hi, I recently pulled out my BX-24 to do a thermostat project. My youngest son expressed a desire to do an electronics project that would include programming....
Hi, Yes, you can assign a variable to a pin. Attached is small program that turn on/off all the pins using a for/loop. Option Explicit Public? Sub? Main() dim...
Rosarite You forgot to put a call delay in your for-next cycle. It should be like: for putpin (out_pin, 1) delay(1.0) putpin (out_pin, 0) delay(1.0) next ...
Hi, I just did that the light turn on and then off. But the most important is that you got the idea how the program works. Regards, Rosarite ... From: David...
Rosarite, Thanks for the tip. I was using the wrong data type, integer instead of byte. Naturally, my son and I have already hard-coded all the pin numbers. I...
Does anyone know the current production status of the BX-24 and related modules? I have a couple of new gadgets in the works and since I haven't seen much...
Thats a good question :? the site is still there, and orders are still avable so i would asume this is still a great place to buy from. There microcontrollers...
Hello Thanks for your message. You says that there are Sources Codes (BX-24) available from many sites. I am curious to know if you could give us the address...
Hello, I want to read 4 AC voltage at 50 Hz coming from a Current Sensor using the BX-24. The BX-24 (or other type of processor) read only DC voltage but the ...
I just pulled out a kinetic sculpture I built 3 years ago. It's controlled by a BX24. I plugged in power and got absolutely nothing. I seem to remember hearing...
Hello, I wrote the following program to read a value on the ADC Port and convert it to RMS value. I have an error at the line Next K and I cannot find the...
Just put: Next (instead of Next k) David M. ... From: gouardopatrick To: basicx@yahoogroups.com Sent: Saturday, January 31, 2009 3:04 PM Subject: [BasicX]...
... Float version or the [Integer] version. Integer is faster - and different. The float value is derived by dividing an integer ADC read by _1023.0_, not...