[SOLVED] fly two crazyflie with the Loco Positioning system

Discussions and questions about the Crazyflie Nano Quadcopter
Post Reply
anomi
Beginner
Posts: 17
Joined: Wed Jun 03, 2020 6:55 pm

[SOLVED] fly two crazyflie with the Loco Positioning system

Post by anomi »

hello,

I installed the Loco Positioning system, and i have flown 1 crazyflie perfectly with the autonomousSequence script.

Now I would like to fly two drones with the Loco Positioning system, But I have not been able to find anything. Does anyone have a example or some information to start?

Thank you in advance
kimberly
Bitcraze
Posts: 1050
Joined: Fri Jul 06, 2018 11:13 am

Re: fly two crazyflie with the Loco Positioning system

Post by kimberly »

Have you tried any of the examples in the 'swarm' folder ?
anomi
Beginner
Posts: 17
Joined: Wed Jun 03, 2020 6:55 pm

Re: fly two crazyflie with the Loco Positioning system

Post by anomi »

Thank you for your reply

I executed the swarmSequence.py after modifying it to fly two drones, I gave a sequence for each drone.

But the problem is that when I execute the script only one drone which follows the sequence and the other it becomes completely unstable I don't know what the problem is.

here is the script that I used

# -*- coding: utf-8 -*-
#
# || ____ _ __
# +------+ / __ )(_) /_______________ _____ ___
# | 0xBC | / __ / / __/ ___/ ___/ __ `/_ / / _ \
# +------+ / /_/ / / /_/ /__/ / / /_/ / / /_/ __/
# || || /_____/_/\__/\___/_/ \__,_/ /___/\___/
#
# Copyright (C) 2017-2018 Bitcraze AB
#
# Crazyflie Nano Quadcopter Client
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
"""
Version of the AutonomousSequence.py example connecting to 10 Crazyflies.
The Crazyflies go straight up, hover a while and land but the code is fairly
generic and each Crazyflie has its own sequence of setpoints that it files
to.

The layout of the positions:
x2 x1 x0

y3 10 4

^ Y
|
y2 9 6 3
|
+------> X

y1 8 5 2



y0 7 1

"""
import time

import cflib.crtp
from cflib.crazyflie.log import LogConfig
from cflib.crazyflie.swarm import CachedCfFactory
from cflib.crazyflie.swarm import Swarm
from cflib.crazyflie.syncLogger import SyncLogger

# Change uris and sequences according to your setup
URI1 = 'radio://0/100/2M'
URI2 = 'radio://0/80/2M'



# x y z time
sequence1 = [
(0.85, 1.42, 0.05, 1),
(0.85, 1.42, 0.50, 1),
(0.85, 1.42, 0.75, 1),

]

sequence2 = [
(0.93, 0.63, 0.05, 1),
(0.93, 0.63, 0.50, 1),
(0.93, 0.63, 0.75, 1),

]



seq_args = {
URI1: [sequence1],
URI2: [sequence2],

}
# List of URIs, comment the one you do not want to fly
uris = {
URI1,
URI2,

}


def wait_for_position_estimator(scf):
print('Waiting for estimator to find position...')

log_config = LogConfig(name='Kalman Variance', period_in_ms=500)
log_config.add_variable('kalman.varPX', 'float')
log_config.add_variable('kalman.varPY', 'float')
log_config.add_variable('kalman.varPZ', 'float')

var_y_history = [1000] * 10
var_x_history = [1000] * 10
var_z_history = [1000] * 10

threshold = 0.001

with SyncLogger(scf, log_config) as logger:
for log_entry in logger:
data = log_entry[1]

var_x_history.append(data['kalman.varPX'])
var_x_history.pop(0)
var_y_history.append(data['kalman.varPY'])
var_y_history.pop(0)
var_z_history.append(data['kalman.varPZ'])
var_z_history.pop(0)

min_x = min(var_x_history)
max_x = max(var_x_history)
min_y = min(var_y_history)
max_y = max(var_y_history)
min_z = min(var_z_history)
max_z = max(var_z_history)

# print("{} {} {}".
# format(max_x - min_x, max_y - min_y, max_z - min_z))

if (max_x - min_x) < threshold and (
max_y - min_y) < threshold and (
max_z - min_z) < threshold:
break


def wait_for_param_download(scf):
while not scf.cf.param.is_updated:
time.sleep(1.0)
print('Parameters downloaded for', scf.cf.link_uri)


def reset_estimator(scf):
cf = scf.cf
cf.param.set_value('kalman.resetEstimation', '1')
time.sleep(0.1)
cf.param.set_value('kalman.resetEstimation', '0')

wait_for_position_estimator(cf)


def take_off(cf, position):
take_off_time = 1.0
sleep_time = 0.1
steps = int(take_off_time / sleep_time)
vz = position[2] / take_off_time

print(vz)

for i in range(steps):
cf.commander.send_velocity_world_setpoint(0, 0, vz, 0)
time.sleep(sleep_time)


def land(cf, position):
landing_time = 1.0
sleep_time = 0.1
steps = int(landing_time / sleep_time)
vz = -position[2] / landing_time

print(vz)

for _ in range(steps):
cf.commander.send_velocity_world_setpoint(0, 0, vz, 0)
time.sleep(sleep_time)

cf.commander.send_stop_setpoint()
# Make sure that the last packet leaves before the link is closed
# since the message queue is not flushed before closing
time.sleep(0.1)


def run_sequence(scf, sequence):
try:
cf = scf.cf

take_off(cf, sequence[0])
for position in sequence:
print('Setting position {}'.format(position))
end_time = time.time() + position[3]
while time.time() < end_time:
cf.commander.send_position_setpoint(position[0],
position[1],
position[2], 0)
time.sleep(0.1)
land(cf, sequence[-1])
except Exception as e:
print(e)


if __name__ == '__main__':
# logging.basicConfig(level=logging.DEBUG)
cflib.crtp.init_drivers(enable_debug_driver=False)

factory = CachedCfFactory(rw_cache='./cache')
with Swarm(uris, factory=factory) as swarm:
# If the copters are started in their correct positions this is
# probably not needed. The Kalman filter will have time to converge
# any way since it takes a while to start them all up and connect. We
# keep the code here to illustrate how to do it.
# swarm.parallel(reset_estimator)

# The current values of all parameters are downloaded as a part of the
# connections sequence. Since we have 10 copters this is clogging up
# communication and we have to wait for it to finish before we start
# flying.
print('Waiting for parameters to be downloaded...')
swarm.parallel(wait_for_param_download)

swarm.parallel(run_sequence, args_dict=seq_args)
kimberly
Bitcraze
Posts: 1050
Joined: Fri Jul 06, 2018 11:13 am

Re: fly two crazyflie with the Loco Positioning system

Post by kimberly »

hi,

please don't copy the entire code like that.... we can not see what the difference is with this one and the standard one in the github code.

About your problem, it might be that the second crazyflie's kalmanfilter didn't had enough time to converge. Please uncomment this line:

Code: Select all

        # swarm.parallel(reset_estimator) 
you can also try the HL swarm example instead, which has that function on by standard.
anomi
Beginner
Posts: 17
Joined: Wed Jun 03, 2020 6:55 pm

Re: fly two crazyflie with the Loco Positioning system

Post by anomi »

thank you very much it's work with me after switching to mode TDoA2
Post Reply