Library for the PsiSwarm Robot for Headstart Lab - Version 0.5

Dependents:   UKESF_Lab

Fork of PsiSwarmLibrary by James Hilder

Committer:
jah128
Date:
Mon Jun 20 13:35:06 2016 +0000
Revision:
4:dc77a25f29de
Parent:
2:c6986ee3c7c5
Commit for UKESF Lab

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jah128 0:d6269d17c8cf 1 /* University of York Robotics Laboratory PsiSwarm Library: PIC and Audio Driver Header File
jah128 0:d6269d17c8cf 2 *
jah128 0:d6269d17c8cf 3 * File: pic.h
jah128 0:d6269d17c8cf 4 *
jah128 0:d6269d17c8cf 5 * (C) Dept. Electronics & Computer Science, University of York
jah128 0:d6269d17c8cf 6 * James Hilder, Alan Millard, Alexander Horsfield, Homero Elizondo, Jon Timmis
jah128 0:d6269d17c8cf 7 *
jah128 2:c6986ee3c7c5 8 * PsiSwarm Library Version: 0.41
jah128 0:d6269d17c8cf 9 *
jah128 2:c6986ee3c7c5 10 * March 2016
jah128 0:d6269d17c8cf 11 *
jah128 0:d6269d17c8cf 12 *
jah128 0:d6269d17c8cf 13 */
jah128 0:d6269d17c8cf 14
jah128 0:d6269d17c8cf 15
jah128 0:d6269d17c8cf 16 #ifndef PIC_H
jah128 0:d6269d17c8cf 17 #define PIC_H
jah128 0:d6269d17c8cf 18
jah128 0:d6269d17c8cf 19 void play_audio_string(char * tune);
jah128 0:d6269d17c8cf 20 void play_tune(char * tune, char length);
jah128 0:d6269d17c8cf 21 char IF_check_pic_firmware(void);
jah128 0:d6269d17c8cf 22
jah128 0:d6269d17c8cf 23 #endif