by Pev » Sat Jan 06, 2007 11:24 pm
by Pev
Sat Jan 06, 2007 11:24 pm
Mark,
I hope this helps, was on the Hitec Robonova site in the US
http://www.hitecrobotics.com/info/answers.htm
It says:
Changing the Remocon ID for control of two separate robots.
To engage two Robonova-I robots in combat using the IR remotes,
it is necessary to change their ID numbers and the ID of the Remocon.
The following text can be added to the “Overall Template Program.bas”
or your personal program.
1.) Add the following declaration: DIM IR_ID_CODE AS BYTE
2.) Next change the following line from,
CONST ID = 0 to CONST IR_ID = 1
This is the Robots ID. It can be any number between 1 and 4.
3.) Beneath this changed line, add the following IF THEN statements:
IF IR_ID = 1 THEN
IR_ID_CODE = 0
ELSEIF IR_ID = 2 THEN
IR_ID_CODE = 32
ELSEIF IR_ID = 3 THEN
IR_ID_CODE = 64
ELSEIF IR_ID = 4 THEN
IR_ID_CODE = 96
4.)The last step is to go to MAIN1 and modify the following sentence from,
"A = A - ID" to "A = A – IR_ID_CODE"
That’s all it takes for programming. What’s required now is to change the Remocon ID to match the one in “CONST IR_ID =” . To do this, press the P1 button on the Remocon and the corresponding number for two seconds. After that, the robot and the Remocon will work together and will not be interfered with by another Remocon.
Which I think is a bit different to the manual
Pev
Mark,
I hope this helps, was on the Hitec Robonova site in the US
http://www.hitecrobotics.com/info/answers.htm
It says:
Changing the Remocon ID for control of two separate robots.
To engage two Robonova-I robots in combat using the IR remotes,
it is necessary to change their ID numbers and the ID of the Remocon.
The following text can be added to the “Overall Template Program.bas”
or your personal program.
1.) Add the following declaration: DIM IR_ID_CODE AS BYTE
2.) Next change the following line from,
CONST ID = 0 to CONST IR_ID = 1
This is the Robots ID. It can be any number between 1 and 4.
3.) Beneath this changed line, add the following IF THEN statements:
IF IR_ID = 1 THEN
IR_ID_CODE = 0
ELSEIF IR_ID = 2 THEN
IR_ID_CODE = 32
ELSEIF IR_ID = 3 THEN
IR_ID_CODE = 64
ELSEIF IR_ID = 4 THEN
IR_ID_CODE = 96
4.)The last step is to go to MAIN1 and modify the following sentence from,
"A = A - ID" to "A = A – IR_ID_CODE"
That’s all it takes for programming. What’s required now is to change the Remocon ID to match the one in “CONST IR_ID =” . To do this, press the P1 button on the Remocon and the corresponding number for two seconds. After that, the robot and the Remocon will work together and will not be interfered with by another Remocon.
Which I think is a bit different to the manual
Pev