machines/projects/pid-controller/firmware/features.h
2023-11-12 21:43:05 +01:00

14 lines
181 B
C

#ifndef FEATURES_H
#define FEATURES_H
#ifdef HAS_RESET
#include "reset.h"
#endif
#include "addons/CurrentSensor.h"
#ifdef HAS_STATUS
#include "addons/Status.h"
#endif
#endif