Files
ArduinoProps/src/ArduinoProps.h
T
2020-06-23 16:52:59 +02:00

26 lines
536 B
C

/*
Name: ArduinoProps.h
Author: Faure Systems <dev at faure dot systems>
Editor: https://github.com/fauresystems
License: MIT License (c) Faure Systems <dev at faure dot systems>
Library to make prop sketch for Escape Room 2.0 (connected prop).
*/
#ifndef _ArduinoProps_h
#define _ArduinoProps_h
#if defined(ARDUINO) && ARDUINO >= 100
#include "arduino.h"
#else
#include "WProgram.h"
#endif
#include "BridgeProp.h"
#include "EthernetProp.h"
#include "WifiProp.h"
#include "PropAction.h"
#include "PropData.h"
#endif