39 lines
522 B
C++
39 lines
522 B
C++
/*
|
|
|
|
Z_OSC - OSC Library for Arduino.
|
|
|
|
This library seems to work with Arduino firmware 0022.
|
|
|
|
Copyright 2011, Jérôme Dupraz. All Rights Reserved
|
|
|
|
Based on the ArdOSC of recotana( http://recotana.com )
|
|
|
|
-------- License -----------
|
|
|
|
Z_OSC
|
|
|
|
The MIT License see readme.txt
|
|
|
|
Copyright © 2011 Jérôme Dupraz
|
|
|
|
*/
|
|
|
|
#ifndef Z_OSCEncoder_h
|
|
#define Z_OSCEncoder_h
|
|
|
|
|
|
|
|
#include "Z_OSCMessage.h"
|
|
|
|
class Z_OSCEncoder{
|
|
|
|
private:
|
|
|
|
|
|
public:
|
|
|
|
int16_t encode( Z_OSCMessage *mes ,uint8_t *sendData );
|
|
|
|
};
|
|
|
|
#endif |