Lab_interaccio/2016/LASERS/Z_OSC/Z_OSCcommon/Z_OSCEncoder.h

39 lines
522 B
C
Raw Normal View History

2025-02-25 21:29:42 +01:00
/*
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