Skip to main content

set_roll()

Description#

This is a setter function that allows you to set the roll variable.

Syntax#

Python: set_roll(power)
Arduino: setRoll(power)

Parameters#

power: An int from -100 to 100 that sets the roll variable. The number represents the direction and power of the output for that flight motion variable. Negative roll is left, positive roll is right.

Returns#

None

Example Code#
Python#
#Python code
import CoDrone
drone = CoDrone.CoDrone()
drone.pair()
drone.takeoff()
# Drone goes right for 1 second with 50 power
drone.set_roll(50)
drone.move(1)
drone.land()
drone.close()
Arduino#
//Arduino code
#include<CoDrone.h> //header
void setup(){
//open serial and connect
CoDrone.begin(115200);
CoDrone.pair(Nearest);
CoDrone.takeoff();
CoDrone.setRoll(60); // set roll power for 60%
CoDrone.move(5); // move drone for 5 seconds
CoDrone.land();
}
void loop(){
}