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
| #!/usr/bin/env python3 | |
| #Demo that makes the crazyflie fly 3 concentric circles in the colors: red, blue and green. | |
| import sys | |
| import time | |
| import math | |
| import numpy | |
| import cflib.crtp |
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
| #!/usr/bin/env python3 | |
| # Demo to make the crazyflie with the LED ring to fly the logo of bitcraze | |
| import sys | |
| import time | |
| import math | |
| import numpy | |
| import cflib.crtp | |
| from cflib.crazyflie import Crazyflie |
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
| import math | |
| import time | |
| import cflib.crtp | |
| from cflib.crazyflie.swarm import CachedCfFactory | |
| from cflib.crazyflie.swarm import Swarm | |
| # Change uris according to your setup | |
| URI0 = 'radio://0/70/2M/E7E7E7E7E7' |
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
| import logging | |
| import sys | |
| import time | |
| import cflib.crtp | |
| from cflib.crazyflie import Crazyflie | |
| from cflib.crazyflie.syncCrazyflie import SyncCrazyflie | |
| URI = 'radio://0/80/2M' |
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
| import logging | |
| import sys | |
| import time | |
| import cflib.crtp | |
| from cflib.crazyflie import Crazyflie | |
| from cflib.crazyflie.syncCrazyflie import SyncCrazyflie | |
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
| APP=1 | |
| APP_STACKSIZE=300 | |
| CFLAGS += -DDISABLE_LIGHTHOUSE_DRIVER=0 | |
| CFLAGS += -DLIGHTHOUSE_FORCE_TYPE=2 | |
| PROJ_OBJ += app_lighthouse.o | |
| CRAZYFLIE_BASE=../.. #fill in with your crazyflie base code | |
| include $(CRAZYFLIE_BASE)/Makefile |
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
| # -*- coding: utf-8 -*- | |
| # | |
| # || ____ _ __ | |
| # +------+ / __ )(_) /_______________ _____ ___ | |
| # | 0xBC | / __ / / __/ ___/ ___/ __ `/_ / / _ \ | |
| # +------+ / /_/ / / /_/ /__/ / / /_/ / / /_/ __/ | |
| # || || /_____/_/\__/\___/_/ \__,_/ /___/\___/ | |
| # | |
| # Copyright (C) 2019 Bitcraze AB | |
| # |
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
| import os | |
| from ament_index_python.packages import get_package_share_directory | |
| from launch import LaunchDescription | |
| from launch_ros.actions import Node | |
| import yaml | |
| def generate_launch_description(): |
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
| @echo off | |
| setlocal enabledelayedexpansion | |
| :: Author: Kimberly McGuire co-authored with Co-pilot | |
| :: Instructions: | |
| :: 1. Place this file inside the zipped release ROS2 distro | |
| :: 2. Navigate to inside the ROS2 binary folder | |
| :: 3. In a command prompt, do 'call preinstall_setup_windowsbinary.bat' and wait until the script is done |
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
| """ | |
| Author: Kimberly McGuire co-authored with Copilot | |
| Instructions: | |
| 1. Place this file inside the zipped release ROS2 distro | |
| 2. Navigate to inside the ROS2 binary folder | |
| 3. In a command prompt, activate your Pixi (Conda) environment | |
| 4. Run: python preinstall_setup_windows.py and wait until the script is done | |
| """ |
OlderNewer