Are there any routines to use the SPI in interactive C already present (but apparently undocumented)? Does anyone have some code I can steal for I2C in...
Ken, Check the Handyboard.com website and the Handyboard yahoo group, I've seen code that uses the SPI port as an I2C mod. Everything that works on the...
Kenneth, You can find a range of introductory IC code under workshop materials in <http://robotics.nasa.gov/edu/9-12>http://robotics.nasa.gov/edu/9-12 Anything...
... Dan, does that include .icb's? (! I knew you were trying to make a workalike, but didn't realize the extent to which you'd succeeded. Nice job, btw.)...
Ken, Yep, .icb's also work the same as on the HB. Though I think .icb's are being phased out with the new Interactive C versions, I read on one of the forums...
I asked both of these on the SUMO11 group and still feel that I don't have a clear answer. Sorry to bug you. I'm strictly a software type, and have only made...
... don't ... type, ... code, ... probably ... [[ & ... know a ... improvement ... and ... 2.0mm). Actually, the spacing isn't 2.5mm, it is 0.1" and round-off...
Kenneth, ... improvement ... 2.0mm). Everything on the Sumo11 board is at .1" spacing with the exception of the 68HC11 socket and the Sharp sensor sockets...
you can use ANY battery with a voltage between ... i.e. ... From the datasheet http://cache.national.com/ds/LM/LM7512C.pdf I get Vin as 7.5V minimum to...
This is just comments. Thank you both for your insightful replies. ... Hmm. I thought that the "servo" ports were all running off of the regulated power supply...
Okay, I get that I can't have the 7.2v servos and the 12v motors happy on the same (motor) power supply. Since the added servos run off a third battery source...
Sounds like a lot of work, I would recomend a different solution though. If I were going to be using 12v motors with the Sumo11, I'd invest in an external...
... The question that I asked though, was not "how much work will it be?" I asked if these steps were necessary and sufficient. I *think* you answered, "yes." ...
... wish ... servo7 ... From Bullet 5 Page 23 of the User's Manual, yes. That is all there is to using the extra 4 servos. +V (7.2 or whatever) to servo + Gnd...
Dan, According to the User's Manual, I should be able to use Servo4..Servo7 in an IC program. The IDE/compiler won't accept as predefined, Servo6 or Servo7....
You're right, making something cool from nothing but spare parts is the whole fun of hobby robotics! You are truely a man after my own heart. How many total...
... is ... I ... are ... 7) I ... file. ... and ... timing ... Dan, I would love to get a copy of the library source. It's not my project to add the...
... One at the moment to change the "front" of the robot for wall-following. I hope to have another fixed up to give me a rotate-able SONAR by the weekend, but...
Hi guys, Is it possible to access the sensor ports on the Main Board with I2C and the HB expansion board on? If so, how do you call up the ports in the I2C...
John, Yes, the main board sensor ports are accessable through IC (not the same as I2C). The Sharp sensor ports are connected to Analog 2 (right) and Analog 2...
Hi all, Does anybody have an idea of how to setup a timer in Interactiv C. I want to calculate the velocity of my car. I am reading rpm's but I don't know how...
Look around. Is your Line following robot acting like a free range chicken wandering around the barnyard? Did your Sumo robot get pushed off the ring by your...
Just a quick post to introduce myself and send kudos to Dan for producing a couple of sweet HC11 boards! And what a great price! I just received my Sumo11 and...
... Hear hear! Dan Gates has produced a great product. I owe him a mention in an upcoming article. Gotta get through PDXBOT.05 this weekend though... -Pete...
Using IC there is no such thing as a "dynamic array". I am assuming you mean an array that can increase in size by allocating and adding entries. The Array is...
How do I declare a global array in IC? I have it now as float dist_array[20]. It has data, but when I try to upload, it does not show in the upload array...
All global variables are declared outside of a function, even the 'main' function. I usually put them at the top, right under the defines. Please let me know...