This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RC Rates Super Rates Expo Rates | |
Roll 1.02 0.60 0.13 | |
Pitch 1.02 0.60 0.13 | |
Yaw 1.05 0.62 0.10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vtxtable bands 5 | |
vtxtable channels 8 | |
vtxtable band 1 BOSCAM_A A FACTORY 5865 5845 5825 5805 5785 5765 5745 5725 | |
vtxtable band 2 BOSCAM_B B FACTORY 5733 5752 5771 5790 5809 5828 5847 5866 | |
vtxtable band 3 BOSCAM_E E FACTORY 5705 5685 5665 5645 5885 5905 5925 5945 | |
vtxtable band 4 FATSHARK F FACTORY 5740 5760 5780 5800 5820 5840 5860 5880 | |
vtxtable band 5 RACEBAND R FACTORY 5658 5695 5732 5769 5806 5843 5880 5917 | |
vtxtable powerlevels 4 | |
vtxtable powervalues 14 20 26 28 | |
vtxtable powerlabels 25 100 400 500 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Arduino stepper library | |
#include <Stepper.h> | |
// different steppers have different | |
// amount of steps to do a full | |
// turn of the wheel. | |
#define STEPS 32 | |
// connections need to be done carefully |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Stepper Motor Control - speed control | |
This program drives a unipolar or bipolar stepper motor. | |
The motor is attached to digital pins 8 - 11 of the Arduino. | |
A potentiometer is connected to analog input 0. | |
The motor will rotate in a clockwise direction. The higher the potentiometer value, | |
the faster the motor speed. Because setSpeed() sets the delay between steps, | |
you may notice the motor is less responsive to changes in the sensor value at |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Written By Nikodem Bartnik - nikodembartnik.pl | |
#define STEPPER_PIN_1 9 | |
#define STEPPER_PIN_2 10 | |
#define STEPPER_PIN_3 11 | |
#define STEPPER_PIN_4 12 | |
int step_number = 0; | |
void setup() { | |
// Potenciometer | |
//Serial.begin(9600); //Initial serial communication at 9600 bits per second |