Psi Swarm Code V0.41 [With Beautiful Meme program]

Dependencies:   PsiSwarmLibrary mbed

Fork of BeautifulMemeProjectBT by Alan Millard

beacon.h

Committer:
jah128
Date:
2016-03-03
Revision:
29:9756004e8499
Parent:
28:46d650381972

File content as of revision 29:9756004e8499:

/// PsiSwarm Beautiful Meme Project Source Code
/// Version 0.4
/// James Hilder, Alan Millard, Homero Elizondo, Jon Timmis
/// University of York

// beacon.h - Functions for detecting the beacon and taking IR readings of the robots

#ifndef BEACON_H
#define BEACON_H

void emitter_ticker_block(void);
void sample_ticker_block(void);
void emitter_timeout_block(void);
void locate_beacon(void);
void start_infrared_timers(void);
unsigned short get_highest_sample(unsigned short * ir_array);
unsigned short get_sum_sample(unsigned short * ir_array);
char turn_to_bearing(int bearing);

#endif