Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

intellibrain · IntelliBrain Forum

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 216
  • Category: Robotics
  • Founded: Nov 18, 2005
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 234 - 263 of 525   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#234 From: "darthmango15" <darthmango15@...>
Date: Tue Aug 28, 2007 3:10 pm
Subject: IntelliBrain Expansion Board
darthmango15
Send Email Send Email
 
I missed the boat in regards to buying an expansion board, so if
anyone wants to sell their board, I would be willing to pay up to the
original price for the board. Please contact me if you have an extra
WORKING board or know where I can get one. Thanks.

#235 From: "rodmontrose" <rcm@...>
Date: Mon Sep 24, 2007 9:51 pm
Subject: System.arraycopy
rodmontrose
Send Email Send Email
 
The RoboJDE API is missing the (very useful) System.arraycopy method
which typically provides a high speed native way to copy bytes from
one array to another. Other than a Java for loop to copy the bytes
from one array to another, is there a faster way to do this?

I had seen the info on native code and was going to try to implement a
native System.arrraycopy for my Atmel Intellibrain2 board and found
that native methods aren't supported on this processor - why not?

-- Rod

#236 From: "rodmontrose" <rcm@...>
Date: Mon Sep 24, 2007 9:46 pm
Subject: JDE bug?
rodmontrose
Send Email Send Email
 
I created a project on my D: partition and the RoboJDE is installed on
my C: partition. I could compile the project on the D: partition but
not link it - it complained that it couldn't find the .class file. I
moved the project to the C: drive (under the RoboJDE directory) and
now it works fine.

Is there are restriction that projects must be on the same drive as
the RoboJDE, or in the RoboJDE directory?

-- Rod

#237 From: "jumpdavid" <jumpdavid@...>
Date: Tue Sep 25, 2007 9:53 pm
Subject: Alternative power source
jumpdavid
Send Email Send Email
 
I searched the forum I did not see the answer to my question.

I just bought a IntelliBrain-Bot Deluxe Educational Robot Kit. Can
this support rechargeable batteries? If it can what types? I also
notice a female power connector on the backside of the robot can I use
this? If I can what is the power adapters specifications I need?

#238 From: "RidgeSoft" <rs1@...>
Date: Wed Sep 26, 2007 5:19 am
Subject: Re: Alternative power source
ridgesoft
Send Email Send Email
 
Powering options are discussed in the IntelliBrain 2 User Guide.  See
page 11.

http://www.ridgesoft.com/intellibrain2/IntelliBrain2Guide.pdf

RidgeSoft Support

--- In intellibrain@yahoogroups.com, "jumpdavid" <jumpdavid@...> wrote:
>
> I searched the forum I did not see the answer to my question.
>
> I just bought a IntelliBrain-Bot Deluxe Educational Robot Kit. Can
> this support rechargeable batteries? If it can what types? I also
> notice a female power connector on the backside of the robot can I use
> this? If I can what is the power adapters specifications I need?
>

#239 From: "RidgeSoft" <rs1@...>
Date: Sat Oct 20, 2007 2:39 pm
Subject: Line following chapter added to free curriculum
ridgesoft
Send Email Send Email
 

We have recently added a new chapter on line following to our hands-on, introductory Java robotics curriculum, Exploring Robotics with the IntelliBrain-Bot.  The chapter covers:

  • using infrared photo-reflective sensors to sense a line
  • following a line using proportional control
  • following a line using a finite state machine
  • using analog-to-digital conversion
  • using constants and arrays

The entire curriculum is available as a PDF book, which you may download for free from our website at:  http://www.ridgesoft.com/articles/education/ExploringRobotics.htm.  Completed programs for the many tutorials throughout the book are also available at the same link.

 

Regards,

 

The RidgeSoft Team


#240 From: "William J. Rust" <wjr@...>
Date: Sat Dec 8, 2007 8:51 pm
Subject: problem downloading using netbeans
wjrust
Send Email Send Email
 
Hi,

I'm trying to use netbeans to compile programs to download to the IB.
I've unchecked the box for compiling on the projects dialog box and I'm
using the RoboJDE.jar as my first library so the compile in netbeans
seems to be working. I've put the code in a package, which in the past
has screwed me up, but RoboJDE seems to be finding the class files. The
error that I am getting is:

No such method:  com.ridgesoft.intellibrain.IntelliBrain.getModel()
Link failed

The code file is attached. It doesn't explicitly contain a call to
getModel() so I'm confused as to what is going on. Any ideas?

wjr

--------------------------------------------------------------------------------\
--------------------------------------------------------

/*
  * TestLED.java
  *
  * Created on October 23, 2007, 12:33 AM
  *
  * To change this template, choose Tools | Template Manager
  * and open the template in the editor.
  */

package test;

import com.ridgesoft.intellibrain.IntelliBrain;
import com.ridgesoft.io.LED;


/**
  *
  * @author Owner
  */
public class TestLED {

     /** Creates a new instance of TestLED */
     public TestLED() {
     }

     public void init() {
         IntelliBrain.getUserLed(1).on();
         IntelliBrain.getUserLed(2).off();
     }

     public void run() {
         while (true) {
             IntelliBrain.getUserLed(1).toggle();
             IntelliBrain.getUserLed(2).toggle();
             Util.pause(500);
         }

     }

     public static void main(String[] args) {
         TestLED tled = new TestLED();
         tled.init();
         tled.run();
     }
}

--
William J. Rust, PhD

#241 From: "RidgeSoft" <rs1@...>
Date: Mon Dec 10, 2007 4:55 am
Subject: Re: problem downloading using netbeans
ridgesoft
Send Email Send Email
 
Does it compile and link okay using the RoboJDE GUI instead of
Netbeans?

RidgeSoft Support

--- In intellibrain@yahoogroups.com, "William J. Rust" <wjr@...>
wrote:
>
> Hi,
>
> I'm trying to use netbeans to compile programs to download to the
IB.
> I've unchecked the box for compiling on the projects dialog box and
I'm
> using the RoboJDE.jar as my first library so the compile in
netbeans
> seems to be working. I've put the code in a package, which in the
past
> has screwed me up, but RoboJDE seems to be finding the class files.
The
> error that I am getting is:
>
> No such method:  com.ridgesoft.intellibrain.IntelliBrain.getModel()
> Link failed
>
> The code file is attached. It doesn't explicitly contain a call to
> getModel() so I'm confused as to what is going on. Any ideas?
>
> wjr
>
> --------------------------------------------------------------------
--------------------------------------------------------------------
>
> /*
>  * TestLED.java
>  *
>  * Created on October 23, 2007, 12:33 AM
>  *
>  * To change this template, choose Tools | Template Manager
>  * and open the template in the editor.
>  */
>
> package test;
>
> import com.ridgesoft.intellibrain.IntelliBrain;
> import com.ridgesoft.io.LED;
>
>
> /**
>  *
>  * @author Owner
>  */
> public class TestLED {
>
>     /** Creates a new instance of TestLED */
>     public TestLED() {
>     }
>
>     public void init() {
>         IntelliBrain.getUserLed(1).on();
>         IntelliBrain.getUserLed(2).off();
>     }
>
>     public void run() {
>         while (true) {
>             IntelliBrain.getUserLed(1).toggle();
>             IntelliBrain.getUserLed(2).toggle();
>             Util.pause(500);
>         }
>
>     }
>
>     public static void main(String[] args) {
>         TestLED tled = new TestLED();
>         tled.init();
>         tled.run();
>     }
> }
>
> --
> William J. Rust, PhD
>

#242 From: "jigar" <tiger_jigar007@...>
Date: Mon Dec 31, 2007 9:23 pm
Subject: Re: AIRcable Bluetooth adapters now available from RidgeSoft store
tiger_jigar007
Send Email Send Email
 
Hey, how do you synchronize the Aircable and Robo JDE. I mean how you
program your Aircable, the one that is connected to your PC? What is the
format of the data that Robo JDE transfer to this port. Well I assume it
should be a machine code (Assembly Language) only. If I am not wrong
then how do you handle this transferring?

#243 From: "RidgeSoft" <rs1@...>
Date: Tue Jan 1, 2008 2:41 am
Subject: Re: AIRcable Bluetooth adapters now available from RidgeSoft store
ridgesoft
Send Email Send Email
 
The AirCable simulates a real cable, replacing the wired serial
communication with wireless serial communication.  RoboJDE doesn't know
the difference between the two.  You can learn more about the AirCable
adapters at:  http://www.aircable.net/

RidgeSoft Support

--- In intellibrain@yahoogroups.com, "jigar" <tiger_jigar007@...> wrote:
>
> Hey, how do you synchronize the Aircable and Robo JDE. I mean how you
> program your Aircable, the one that is connected to your PC? What is
the
> format of the data that Robo JDE transfer to this port. Well I assume
it
> should be a machine code (Assembly Language) only. If I am not wrong
> then how do you handle this transferring?
>

#244 From: "aokjoey" <joe@...>
Date: Tue Jan 15, 2008 4:37 pm
Subject: For Sale: Custom Built, IntelliBrain-based Robot
aokjoey
Send Email Send Email
 
For Sale: Custom Built Robot

This turn-key system was professionally built using standard components and
techniques.
Robot is in like-new condition. Controller is loaded with test program to
exercise all robot
functions. Robot base was only used about a year, the controller and Bluetooth
components only about 6 months, all part-time hobby use in one location. Wiring
connectors are used throughout system to ease modification and repair.

More info and images: http://www.apogeedevelop.com/robot

This robot is worth over $600 and will save you time buy having building a basic
functional platform from scratch.
Price is $350 FIRM plus $15 insured shipping.
Contact: jn at columbus dot rr dot com

Features
Differential drive based on commercial platform (Budget Robotics Octobot)
Ridgesoft's IntelliBrain 2 Java controller
AIRCable Bluetooth USB dongle and Serial Wireless Modem
Four Sharp GP2-D12 infared distance sensors
Two CDS Light Sensors
Impact Sensor (Two microswitches and spring-loaded bumper)
Two Robotics Connection 2.25", 44 Spoke Wheel Encoder Disks and a Hamamatsu
P5587
Wheel Encoder Modules.
Rechargeable 1800Mah NIMH batteries
NiMH/NiCAD Recharger included
Charger jack
PowerOffCharge switch
Drive motor enabledisable switch

#245 From: "arturuong" <agarcia@...>
Date: Thu Jan 17, 2008 5:36 am
Subject: Nubotics wheelwatchers
arturuong
Send Email Send Email
 
I saw the previous post on how to connect the cables to the board but
I was wondering if any one could recommend a site to buy the small
3-pin housing and crimps needed.  Acroname sells a kit but it includes
connectors I don't need and buying enough of those kits to supply the
amount of 3-pins I need is expensive.  Any help would be appreciated.

Thanks

#246 From: Doug Franklin <DRFranklin@...>
Date: Mon Jan 21, 2008 6:55 am
Subject: Motor Controller Max Amperage
drf717183
Send Email Send Email
 
I'm looking at using my Intellibrain & Expansion board with a small two-motor tracked robot kit.  Each motor is rated at 7.2V, 300 mA no load, 2.0 A stall.  The specs I see for the expansion board are 4x motor controllers, 1A each.  So if I used one per motor, and stalled the robot, these guys would be overdrawn... 
 
So I have two questions.  One, is there any kind of protection on the controllers so they won't fry in this situation?
 
And two, would it be possible to wire a couple of the motor controllers in parallel for each motor, thereby boosting the max amperage to 2A per pair?  (This seems very unlikely... the pwm driving the motors would have to be exactly in phase for each pair... but, no harm in asking!)
 
Thanks in advance,
 
Doug Franklin

#247 From: "RidgeSoft" <rs1@...>
Date: Tue Jan 22, 2008 3:16 am
Subject: Re: Motor Controller Max Amperage
ridgesoft
Send Email Send Email
 

The motor driver chip is spec'd to deliver up to 1A per output.  It has thermal shutdown, but it's probably not a good idea to depend on this.

The specs on the driver chip are available here:  http://focus.ti.com/docs/prod/folders/print/sn754410.html

RidgeSoft Support


--- In intellibrain@yahoogroups.com, Doug Franklin <DRFranklin@...> wrote:
>
> I'm looking at using my Intellibrain & Expansion board with a small
> two-motor tracked robot kit. Each motor is rated at 7.2V, 300 mA no load,
> 2.0 A stall. The specs I see for the expansion board are 4x motor
> controllers, 1A each. So if I used one per motor, and stalled the robot,
> these guys would be overdrawn...
>
> So I have two questions. One, is there any kind of protection on the
> controllers so they won't fry in this situation?
>
> And two, would it be possible to wire a couple of the motor controllers in
> parallel for each motor, thereby boosting the max amperage to 2A per pair?
> (This seems very unlikely... the pwm driving the motors would have to be
> exactly in phase for each pair... but, no harm in asking!)
>
> Thanks in advance,
>
> Doug Franklin
>


#248 From: Doug Franklin <DRFranklin@...>
Date: Wed Jan 23, 2008 3:57 am
Subject: RE: Re: Motor Controller Max Amperage
drf717183
Send Email Send Email
 
Thanks for the reply.  I found a nice little hardware hack that could solve my particular problem: stack another motor driver chip on top.  See:
 
 
Doug

From: intellibrain@yahoogroups.com [mailto:intellibrain@yahoogroups.com] On Behalf Of RidgeSoft
Sent: Monday, January 21, 2008 6:17 PM
To: intellibrain@yahoogroups.com
Subject: [intellibrain] Re: Motor Controller Max Amperage

The motor driver chip is spec'd to deliver up to 1A per output.  It has thermal shutdown, but it's probably not a good idea to depend on this.

The specs on the driver chip are available here:  http://focus.ti.com/docs/prod/folders/print/sn754410.html

RidgeSoft Support


--- In intellibrain@yahoogroups.com, Doug Franklin <DRFranklin@...> wrote:
>
> I'm looking at using my Intellibrain & Expansion board with a small
> two-motor tracked robot kit. Each motor is rated at 7.2V, 300 mA no load,
> 2.0 A stall. The specs I see for the expansion board are 4x motor
> controllers, 1A each. So if I used one per motor, and stalled the robot,
> these guys would be overdrawn...
>
> So I have two questions. One, is there any kind of protection on the
> controllers so they won't fry in this situation?
>
> And two, would it be possible to wire a couple of the motor controllers in
> parallel for each motor, thereby boosting the max amperage to 2A per pair?
> (This seems very unlikely... the pwm driving the motors would have to be
> exactly in phase for each pair... but, no harm in asking!)
>
> Thanks in advance,
>
> Doug Franklin
>


#249 From: romy budhi <romy_budhi@...>
Date: Mon Jan 28, 2008 8:35 am
Subject: no lcd display
romy_budhi
Send Email Send Email
 
Dear all,
I already follow the testing procedure of new
controller.

>>Rotate the thumbwheel slowly until the LCD screen
displays the readings of
the left and right wheel sensors as follows: L Wheel:
<value> , R Wheel:<value> .

The LCD didn't show the text 'L wheel and  R Wheel'
eventhough I already rotate the wheel.

I already slide the sensor and screw all the way
to the rear end of the slot and extend
the sensor as far over the side of the
chassis as possible, as the instruction command.

When my Robot run 'Navigate Square', he can do it, but
not perfectly square.

Please help.

Thank you


      
________________________________________________________________________________\
____
Never miss a thing.  Make Yahoo your home page.
http://www.yahoo.com/r/hs

#250 From: "RidgeSoft" <rs1@...>
Date: Fri Feb 1, 2008 4:17 am
Subject: Re: no lcd display
ridgesoft
Send Email Send Email
 
Do you see any text on the display?  Are you turning the thumbwheel
(the black knob next to the serail port connector)?

The IntelliBrain-Bot, as with any robot, has limited precision and is
subject to meeasurement and control errors, such as slippage of the
wheels.  This is one of the challenging aspects of robotics that
makes the field interesting and challenging.

You can improve the precision of the IntelliBrain-Bot's navigation by
upgrading the wheel encoders.  Nubotics makes some very nice encoders.

Regards,

RidgeSoft Support

--- In intellibrain@yahoogroups.com, romy budhi <romy_budhi@...>
wrote:
>
> Dear all,
> I already follow the testing procedure of new
> controller.
>
> >>Rotate the thumbwheel slowly until the LCD screen
> displays the readings of
> the left and right wheel sensors as follows: L Wheel:
> <value> , R Wheel:<value> .
>
> The LCD didn't show the text 'L wheel and  R Wheel'
> eventhough I already rotate the wheel.
>
> I already slide the sensor and screw all the way
> to the rear end of the slot and extend
> the sensor as far over the side of the
> chassis as possible, as the instruction command.
>
> When my Robot run 'Navigate Square', he can do it, but
> not perfectly square.
>
> Please help.
>
> Thank you
>
>
>
______________________________________________________________________
______________
> Never miss a thing.  Make Yahoo your home page.
> http://www.yahoo.com/r/hs
>

#251 From: "wjrust" <wjr@...>
Date: Mon Feb 4, 2008 4:53 am
Subject: using packages
wjrust
Send Email Send Email
 
I've been trying to use packages in roboJDE and am not having much
luck. (Actually, I got it set up to use NetBeans to compile and then
download with RJDE with little luck). I've tried using RJDE with the
no compile option but I am having a tough time setting the directory
properly. Is it possible to link and download from a .jar?

#252 From: "RidgeSoft" <rs1@...>
Date: Mon Feb 4, 2008 4:48 pm
Subject: Re: using packages
ridgesoft
Send Email Send Email
 
You should be able to link using JAR files.  Just add them to the path
in the project properties in RoboJDE.

RidgeSoft Support


--- In intellibrain@yahoogroups.com, "wjrust" <wjr@...> wrote:
>
> I've been trying to use packages in roboJDE and am not having much
> luck. (Actually, I got it set up to use NetBeans to compile and then
> download with RJDE with little luck). I've tried using RJDE with the
> no compile option but I am having a tough time setting the directory
> properly. Is it possible to link and download from a .jar?
>

#253 From: "William J. Rust" <wjr@...>
Date: Sat Mar 29, 2008 5:34 am
Subject: using continuousrotationservo to control an esc
wjrust
Send Email Send Email
 
Hi,

I've finally gotten back to using my IB to control a TA RC car. The
problem that I am having is that it won't go into reverse. When I use
the RC controller, I have to flip it into reverse twice before it
actually takes but I believe that to be an artifact of the controller
instead of the esc. In any case, I recently got a javelin stamp and used
its servo port to make it go both forward and reverse. When I hooked up
both the IB and the JS to a 'sillicope, I found that the IB has a
slightly shorter period than the JS. This might mean that the esc sees
the pulse as being longer than it really is. When I shortened the pulse
times on the JS, it acted just like the IB does, not going into reverse.
The JS gives you really nuts and bolts access to the servo pwm. Is there
somewhere in the servo code that lets you do the same thing?

Thanks,

wjr

--
William J. Rust, PhD

#254 From: "RidgeSoft" <rs1@...>
Date: Sat Mar 29, 2008 1:14 pm
Subject: Re: using continuousrotationservo to control an esc
ridgesoft
Send Email Send Email
 
Hi William,

You might try using the Servo interface directly, rather than the
ContinuousRotationServo facade.  This will allow you to experiment with
various pulse widths to see how the ESC responds.  Another option is to
use one of the pulse output ports.  These have more flexibility in terms
of pulse duration and frequency.  To create a pulse train similar to
what the servo ports do, you would have to have a high priority thread
wake up every so often to fire a pulse on the port.

Regards,

RidgeSoft Support


--- In intellibrain@yahoogroups.com, "William J. Rust" <wjr@...> wrote:
>
> Hi,
>
> I've finally gotten back to using my IB to control a TA RC car. The
> problem that I am having is that it won't go into reverse. When I use
> the RC controller, I have to flip it into reverse twice before it
> actually takes but I believe that to be an artifact of the controller
> instead of the esc. In any case, I recently got a javelin stamp and
used
> its servo port to make it go both forward and reverse. When I hooked
up
> both the IB and the JS to a 'sillicope, I found that the IB has a
> slightly shorter period than the JS. This might mean that the esc sees
> the pulse as being longer than it really is. When I shortened the
pulse
> times on the JS, it acted just like the IB does, not going into
reverse.
> The JS gives you really nuts and bolts access to the servo pwm. Is
there
> somewhere in the servo code that lets you do the same thing?
>
> Thanks,
>
> wjr
>
> --
> William J. Rust, PhD
>

#255 From: "William J. Rust" <wjr@...>
Date: Mon Mar 31, 2008 7:53 pm
Subject: Re: Re: using continuousrotationservo to control an esc
wjrust
Send Email Send Email
 
I tried using Servo directly and it didn't work. However, using a pulse
output port does work. I got the motors to turn both ways. I should know
this but is the threading preemptive or will I need to put in yields to
make sure the motors keep running?

BTW, when I decompiled the jar, I notice the servos are native calls.
Any chance that the parameters to the PWM call are, or could be, public?

Thanks,

wjr

RidgeSoft wrote:
>
>
> Hi William,
>
> You might try using the Servo interface directly, rather than the
> ContinuousRotationServo facade. This will allow you to experiment with
> various pulse widths to see how the ESC responds. Another option is to
> use one of the pulse output ports. These have more flexibility in terms
> of pulse duration and frequency. To create a pulse train similar to
> what the servo ports do, you would have to have a high priority thread
> wake up every so often to fire a pulse on the port.
>
> Regards,
>
> RidgeSoft Support
>
> --- In intellibrain@yahoogroups.com
> <mailto:intellibrain%40yahoogroups.com>, "William J. Rust" <wjr@...>
> wrote:
> >
> > Hi,
> >
> > I've finally gotten back to using my IB to control a TA RC car. The
> > problem that I am having is that it won't go into reverse. When I use
> > the RC controller, I have to flip it into reverse twice before it
> > actually takes but I believe that to be an artifact of the controller
> > instead of the esc. In any case, I recently got a javelin stamp and
> used
> > its servo port to make it go both forward and reverse. When I hooked
> up
> > both the IB and the JS to a 'sillicope, I found that the IB has a
> > slightly shorter period than the JS. This might mean that the esc sees
> > the pulse as being longer than it really is. When I shortened the
> pulse
> > times on the JS, it acted just like the IB does, not going into
> reverse.
> > The JS gives you really nuts and bolts access to the servo pwm. Is
> there
> > somewhere in the servo code that lets you do the same thing?
> >
> > Thanks,
> >
> > wjr
> >
> > --
> > William J. Rust, PhD
> >
>
>


--
William J. Rust, PhD

#256 From: "RidgeSoft" <rs1@...>
Date: Mon Mar 31, 2008 8:50 pm
Subject: Re: using continuousrotationservo to control an esc
ridgesoft
Send Email Send Email
 
William,

It's preemptive.  All you need to do is give the thread higher priority.

It isn't a simple matter to expose the lower level servo PWM control.
The eight servos are multiplexed off of a single output, which makes it
tightly coupled to the hardware.

Regards,

RidgeSoft Support


--- In intellibrain@yahoogroups.com, "William J. Rust" <wjr@...> wrote:
>
> I tried using Servo directly and it didn't work. However, using a
pulse
> output port does work. I got the motors to turn both ways. I should
know
> this but is the threading preemptive or will I need to put in yields
to
> make sure the motors keep running?
>
> BTW, when I decompiled the jar, I notice the servos are native calls.
> Any chance that the parameters to the PWM call are, or could be,
public?
>
> Thanks,
>
> wjr
>
> RidgeSoft wrote:
> >
> >
> > Hi William,
> >
> > You might try using the Servo interface directly, rather than the
> > ContinuousRotationServo facade. This will allow you to experiment
with
> > various pulse widths to see how the ESC responds. Another option is
to
> > use one of the pulse output ports. These have more flexibility in
terms
> > of pulse duration and frequency. To create a pulse train similar to
> > what the servo ports do, you would have to have a high priority
thread
> > wake up every so often to fire a pulse on the port.
> >
> > Regards,
> >
> > RidgeSoft Support
> >
> > --- In intellibrain@yahoogroups.com
> > <mailto:intellibrain%40yahoogroups.com>, "William J. Rust" wjr@
> > wrote:
> > >
> > > Hi,
> > >
> > > I've finally gotten back to using my IB to control a TA RC car.
The
> > > problem that I am having is that it won't go into reverse. When I
use
> > > the RC controller, I have to flip it into reverse twice before it
> > > actually takes but I believe that to be an artifact of the
controller
> > > instead of the esc. In any case, I recently got a javelin stamp
and
> > used
> > > its servo port to make it go both forward and reverse. When I
hooked
> > up
> > > both the IB and the JS to a 'sillicope, I found that the IB has a
> > > slightly shorter period than the JS. This might mean that the esc
sees
> > > the pulse as being longer than it really is. When I shortened the
> > pulse
> > > times on the JS, it acted just like the IB does, not going into
> > reverse.
> > > The JS gives you really nuts and bolts access to the servo pwm. Is
> > there
> > > somewhere in the servo code that lets you do the same thing?
> > >
> > > Thanks,
> > >
> > > wjr
> > >
> > > --
> > > William J. Rust, PhD
> > >
> >
> >
>
>
> --
> William J. Rust, PhD
>

#257 From: "hgrimberg01" <hgrimberg01@...>
Date: Fri Apr 18, 2008 3:35 am
Subject: LicenseError:object limit
hgrimberg01
Send Email Send Email
 
I get a LicenseError:ObjectLimit when i attempt to run my code. The
only way to solve this is to disable some parts. Any suggestions?

Thanks

#258 From: "RidgeSoft" <rs1@...>
Date: Fri Apr 18, 2008 3:56 am
Subject: Re: LicenseError:object limit
ridgesoft
Send Email Send Email
 
You need to install the license key.  The key is on the back of the
CDROM case or was sent to you in an email or letter.  Use the Install
License Key item on the RoboJDE Tools menu.

Regards,

RidgeSoft Support


--- In intellibrain@yahoogroups.com, "hgrimberg01" <hgrimberg01@...>
wrote:
>
> I get a LicenseError:ObjectLimit when i attempt to run my code. The
> only way to solve this is to disable some parts. Any suggestions?
>
> Thanks
>

#259 From: "hgrimberg01" <hgrimberg01@...>
Date: Fri Apr 18, 2008 2:07 pm
Subject: Re: LicenseError:object limit
hgrimberg01
Send Email Send Email
 
--- In intellibrain@yahoogroups.com, "RidgeSoft" <rs1@...> wrote:
>
>
> You need to install the license key.  The key is on the back of the
> CDROM case or was sent to you in an email or letter.  Use the
Install
> License Key item on the RoboJDE Tools menu.
>
> Regards,
>
> RidgeSoft Support
>
>
> --- In intellibrain@yahoogroups.com, "hgrimberg01" <hgrimberg01@>
> wrote:
> >
> > I get a LicenseError:ObjectLimit when i attempt to run my code.
The
> > only way to solve this is to disable some parts. Any suggestions?
> >
> > Thanks
> >
>
I tried that it still gives me an error

#260 From: "RidgeSoft" <rs1@...>
Date: Sat Apr 19, 2008 1:54 am
Subject: Re: LicenseError:object limit
ridgesoft
Send Email Send Email
 
Make sure the user account you are using has write access to the folder
where you installed RoboJDE (e.g. C:\Program Files\RoboJDE).  After you
have installed the license key it should be listed in the Help->About
window.  If it does, but disappears after you exit and restart RoboJDE
it means you don't have write access to the folder where the key is
stored.

Regards,

RidgeSoft Support


--- In intellibrain@yahoogroups.com, "hgrimberg01" <hgrimberg01@...>
wrote:
>
> --- In intellibrain@yahoogroups.com, "RidgeSoft" rs1@ wrote:
> >
> >
> > You need to install the license key. The key is on the back of the
> > CDROM case or was sent to you in an email or letter. Use the
> Install
> > License Key item on the RoboJDE Tools menu.
> >
> > Regards,
> >
> > RidgeSoft Support
> >
> >
> > --- In intellibrain@yahoogroups.com, "hgrimberg01" <hgrimberg01@>
> > wrote:
> > >
> > > I get a LicenseError:ObjectLimit when i attempt to run my code.
> The
> > > only way to solve this is to disable some parts. Any suggestions?
> > >
> > > Thanks
> > >
> >
> I tried that it still gives me an error
>

#261 From: "navaho4x4" <dsuarez1@...>
Date: Mon Jun 9, 2008 6:10 pm
Subject: questions on ContinuousRotationServo class
navaho4x4
Send Email Send Email
 
I am trying to figure out how the setPower method is implemented in
particular the setPosition method call within setPower().
((power * mRange)/Motor.MAX_FORWARD  + 50)

How is this derived ?
I know mRange varies based on servo.  14 for intellibrain 2
According to Java Doc,  Motor.MAX_FORWARD is +16.
power will be range of +-16

#262 From: "jon.heer" <Jon.Heer@...>
Date: Mon Jun 9, 2008 6:08 pm
Subject: Loading throught the cmd line?
jon.heer
Send Email Send Email
 
Hi,

I am very much an Eclipse kind of guy, and I've already found on this
forum how to edit and compile within eclipse.  However, I would like to
create an Eclipse plug-in which would allow you to create a RoboJDE
project (automatically loading the correct build path) by right
clicking in the package explorer view.  I also would like to make it
possible to load the program onto the device by adding a "load" button
to eclipse.  The latter will be my biggest obstacle, and so I thought I
would post here to see if anyone knew if you could load a program over
the command line instead of through the RoboJDE GUI.  Any help would be
appreciated.  Also, I'm sure if I get anything working I could make it
available for people to use.

Thanks in Advance,
Jon Heer

#263 From: "navaho4x4" <dsuarez1@...>
Date: Sun Jun 8, 2008 9:50 pm
Subject: building cables for Intellibrain
navaho4x4
Send Email Send Email
 
How do I build custom cables to interface with Intellibrain controller ?
What is standard awg wire gage for digital inputs ?
What about wire gage for analog inputs ?
What are the type of connectors Hitec, Jr ?
What tools are needed ?
Which vendor specializes in these type cables construction ?
I search and I found cable construction kits for Phone or Cable TV.

Messages 234 - 263 of 525   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