Skip to content

Commit

Permalink
Updated radio channel mapping to prevent runaway (#23)
Browse files Browse the repository at this point in the history
In the old configuration the bot will runaway backwards if it is
turned on when the radio is left off.
  • Loading branch information
richard-hatchbed authored Dec 19, 2022
1 parent d77a176 commit b82a9db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/RoboMagellan6x6/RoboMagellan6x6.ino
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const uint8_t VoltagePin = 67;
const uint8_t LEDpin[] = {25, 26, 27}; //blue, yellow, red
const uint8_t PingPin[] = {A0, A1, A2, A3, A4}; //left to right
const uint8_t ServoPin[] = {12, 11, 8};//drive, steer, backS; APM 1,2,3 resp.
uint8_t RadioChannel[] = {2, 0, 2}; //see enum
uint8_t RadioChannel[] = {1, 0, 2}; //see enum
const uint8_t EncoderPin[]= {2/*APM pin 7*/, 3 /*APM pin 6*/};


Expand Down

0 comments on commit b82a9db

Please sign in to comment.