Skip to main content

set_yaw()

Description#

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

Syntax#

Python: set_yaw(power)
Arduino: setYaw(power)

Parameters#

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

Returns#

Boolean

Example Code#
Python#
#Python code
import CoDrone
drone = CoDrone.CoDrone()
drone.pair()
drone.takeoff()
# Drone turns right for 1 second with 50 power
drone.set_yaw(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.setYaw(60); // set yaw power for 60%
CoDrone.move(5); // move drone for 5 seconds
CoDrone.land();
}
void loop(){
}