“BOXZ Mini Robot”的版本间的差异
(Created page with "{| style="width: 800px;" |- | ==Outline== *Project: Microduino BOXZ Mini Robot. *Purpose: To control BOXZ Mini Robot by Microduino-Joypad. *Difficulty: High *Time-consum...") |
853387039@qq.com(讨论 | 贡献) (→Software Debugging) |
||
(未显示同一用户的1个中间版本) | |||
第114行: | 第114行: | ||
*Downlaod Microduino_Joypad_Ctrl program: | *Downlaod Microduino_Joypad_Ctrl program: | ||
+ | https://github.com/Microduino/Microduino_Tutorials/tree/master/Microduino_Advanced_Tutorial/Microduino_Joypad_QuadCopter/Joypad_RC_2.4 | ||
− | *Open Microduino_Joypad_Ctrl program, select the right board ()Microduino Core (Atmega328P@16M,5V) after successful compiling and then download. | + | *Open Microduino_Joypad_Ctrl program, select the right board ()Microduino Core (Atmega328P@16M,5V) after successful compiling and then download. |
===Debug Microduino-Joypad=== | ===Debug Microduino-Joypad=== | ||
第196行: | 第197行: | ||
===Software Debugging=== | ===Software Debugging=== | ||
*Download Microduino_Robot_BOXZ program: | *Download Microduino_Robot_BOXZ program: | ||
+ | https://github.com/Microduino/Microduino_Tutorials/tree/master/Microduino_Joypad/Robot_v0.1 | ||
+ | |||
*Open Microduino_Robot_BOXZ program, choose the right board (Microduino Core+ (Atmega644P@16M,5V)) after successful compiling and download. | *Open Microduino_Robot_BOXZ program, choose the right board (Microduino Core+ (Atmega644P@16M,5V)) after successful compiling and download. | ||
*Open [[Microduino-Joypad]] after the download, select “Robot” and “MCU OFF” mode and turn on the remote control and play. (Note: Please make sure the joystick is adjusted correctly.) | *Open [[Microduino-Joypad]] after the download, select “Robot” and “MCU OFF” mode and turn on the remote control and play. (Note: Please make sure the joystick is adjusted correctly.) |
2014年12月1日 (一) 03:43的最新版本
目录Outline
PrincipleMicroduino BOXZ Mini Robot is driven by two wheels, which can move around under the control of Microduino-Joypad. So, you only need to control the rotation direction of the two wheels if you want to control the robot. StructureThe structure of the robot is simple, including three parts:
AdvantageThe robot is highly integrated with less wire, ready to plug in for use. It is simple and powerful. Bill of Material
DocumentMicroduino-Joypad DebuggingBuild Microduino-Joypad
Microduino-Joypad buildup reference Microduino-Joypad Getting start。 You also need to stack Microduino-nRF24 on the base board of Microduino-Joypad. Software Debugging
Debug Microduino-Joypad
Build BOXZ mini
Hardware Buildup
Notice: Make sure Core+ is at the bottom and Microduino-Motor on the base board off M.A.
Software Debugging
https://github.com/Microduino/Microduino_Tutorials/tree/master/Microduino_Joypad/Robot_v0.1
int mic_left = 6;
int mic_right = 8;
int mic_head = 5;
int mic_back = 7;
Eg. If the left and the right rotation is opposite, you can change: int mic_left = 7;
int mic_right = 5;
int mic_head = 8;
int mic_back = 6;
|