Colour sensors calibrated

Dependencies:   mbed-rtos mbed Servo QEI

Fork of ICRSEurobot13 by Thomas Branch

Processes/Printing/Printing.h

Committer:
madcowswe
Date:
2013-04-09
Revision:
22:167dacfe0b14
Parent:
12:d4b5851742a3
Child:
26:b16f1045108f

File content as of revision 22:167dacfe0b14:


// Eurobot13 Printing.h

#include "mbed.h"
#include "rtos.h"

namespace Printing {

const size_t NUMIDS = sizeof(unsigned int)*8;

//Function to start in Thread
void printingloop(void const*); //

//Functions to use 
bool registerID(char id, size_t length);
bool unregisterID(char id);
bool updateval(char id, float* buffer, size_t length);
bool updateval(char id, float value);

}