Page MenuHomeFeedback Tracker

Program the rover
New, WishlistPublic

Description

If your wheel is stuck running at a certain RPM or has glitches. Have a computer in the mission room to program script, game script not real script of any type. To counteract the bad wheel.

Example types of code syntax I am talking about. Code that is fairly simple to read and write
PBASIC
PHP
Fortran

So to fix a wheel you would have a pin for each wheel and you use that for stuff like...

-----------------------------

'start program
IF pressing w
GOSUB foward
ENDIF

forward:
HIGH 4, 700
HIGH 5, 700
HIGH 6, 700
HIGH 7, 700 *4-7 are wheels. turns them on. 700 is milliamps
i = DEBUG 5 *wheel # 5
IF i <= 650 *{650 mAmps}
HIGH 6, i
HIGH 7, i
HIGH 4, i
ENDIF
RETURN

END

'end program

And can turn on equipment by saying some thing like "HIGH 1" 1 standing for front lights.

This is a bit random code but something along that line.

Details

Legacy ID
1217815137
Severity
None
Resolution
Open
Reproducibility
Have Not Tried

Event Timeline

cky2250 set Category to category:suggestions.Aug 2 2013, 1:07 AM
cky2250 set Reproducibility to Have Not Tried.
cky2250 set Severity to None.
cky2250 set Resolution to Open.
cky2250 set Legacy ID to 1217815137.May 9 2016, 9:48 AM
Zalifer added a subscriber: Zalifer.May 9 2016, 9:48 AM
cky2250 added a subscriber: cky2250.May 9 2016, 9:48 AM

This would be good for time delayed hardcore mode as well.