// ---------------------------------------------------------------------------- // Constants.h // // // Authors: // Peter Polidoro peter@polidoro.io // ---------------------------------------------------------------------------- #ifndef CONSTANTS_H #define CONSTANTS_H #include #include namespace constants { extern const PCA9685::DeviceAddress device_address; extern const PCA9685::Pin output_enable_pin; extern const size_t loop_delay; extern const PCA9685::Channel channel; extern const PCA9685::DurationMicroseconds servo_pulse_duration_min; extern const PCA9685::DurationMicroseconds servo_pulse_duration_max; extern const PCA9685::DurationMicroseconds servo_pulse_duration_increment; } #endif