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

37 lines
526 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_OSCDecoder_h
#define Z_OSCDecoder_h
#include "Z_OSCMessage.h"
class Z_OSCDecoder{
private:
public:
int16_t decode( Z_OSCMessage *mes ,const uint8_t *recData );
};
#endif