All Downloads are FREE. Search and download functionalities are using the official Maven repository.

DmxSimple.DmxSimple.h Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
/**
 * DmxSimple - A simple interface to DMX.
 *
 * Copyright (c) 2008-2009 Peter Knight, Tinker.it! All rights reserved.
 */

#ifndef DmxSimple_h
#define DmxSimple_h

#include 

#if RAMEND <= 0x4FF
#define DMX_SIZE 128
#else
#define DMX_SIZE 512
#endif

class DmxSimpleClass
{
  public:
    void maxChannel(int);
    void write(int, uint8_t);
    void usePin(uint8_t);
};
extern DmxSimpleClass DmxSimple;

#endif




© 2015 - 2024 Weber Informatics LLC | Privacy Policy