mixer-slider/firmware/main.h

16 lines
178 B
C
Raw Normal View History

2019-02-10 19:12:40 +01:00
#ifndef APP_H__
#define APP_H__
#include <communication.h>
#include "adc.h"
#include <slave/slave.h>
struct app {
2019-02-13 15:18:38 +01:00
volatile uint8_t button;
2019-02-10 19:12:40 +01:00
};
extern struct app app;
2019-02-13 15:18:38 +01:00
#endif