Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of PsiSwarm-flockingAddedBluetooth by
PsiSwarm/dances.cpp
- Committer:
- JamesSW
- Date:
- 2017-03-01
- Revision:
- 19:b5788427db67
- Parent:
- 10:1b09d4bb847b
File content as of revision 19:b5788427db67:
/* University of York Robotics Laboratory PsiSwarm Library: Dances Source File
*
* Library of simple predetermined movements
*
* File: dances.cpp
*
* (C) Dept. Electronics & Computer Science, University of York
* James Hilder, Alan Millard, Homero Elizondo, Jon Timmis
*
* PsiSwarm Library Version: 0.3
*
* October 2015
*
*/
#include "psiswarm.h"
char vibrate_counter = 0;
Timeout dances_timeout;
///Do a simple wiggle
void vibrate(void)
{
if(vibrate_counter == 0)save_led_states();
if(vibrate_counter % 2 == 0) {
set_leds(0xC7,0x00);
turn(1.0);
} else {
set_leds(0x00,0xC7);
turn(-1.0);
}
vibrate_counter++;
if(vibrate_counter < 14) {
float wiggle_timeout_period = 0.06;
//Move less on first 'wiggle' so that we stay in roughly the same place!
if(vibrate_counter == 0) wiggle_timeout_period = 0.03;
dances_timeout.attach(vibrate, wiggle_timeout_period);
} else {
vibrate_counter = 0;
brake();
restore_led_states();
}
}
