Lab_interaccio/2013/Ardumote/OSCEncoder.h
2025-02-25 21:29:42 +01:00

36 lines
470 B
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
ArdOSC 2.1 - OSC Library for Arduino.
-------- Lisence -----------------------------------------------------------
ArdOSC
The MIT License
Copyright (c) 2009 - 2011 recotana( http://recotana.com ) All right reserved
*/
#ifndef OSCEncoder_h
#define OSCEncoder_h
#include "OSCMessage.h"
class OSCEncoder{
private:
int16_t encode( OSCMessage::OSCMessage *mes ,uint8_t *_binData );
public:
friend class OSCClient;
};
#endif