2022-03-28 22:46:58 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "pico/stdlib.h"
|
|
|
|
#include "pwm_cluster.hpp"
|
|
|
|
#include "motor_state.hpp"
|
|
|
|
|
|
|
|
using namespace pimoroni;
|
|
|
|
|
|
|
|
namespace motor {
|
|
|
|
|
|
|
|
class MotorCluster {
|
2022-04-11 13:35:53 +01:00
|
|
|
//--------------------------------------------------
|
|
|
|
// Substructures
|
|
|
|
//--------------------------------------------------
|
|
|
|
private:
|
|
|
|
struct motor_config {
|
|
|
|
float phase;
|
|
|
|
DecayMode mode;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2022-03-28 22:46:58 +01:00
|
|
|
//--------------------------------------------------
|
|
|
|
// Variables
|
|
|
|
//--------------------------------------------------
|
|
|
|
private:
|
|
|
|
PWMCluster pwms;
|
|
|
|
uint32_t pwm_period;
|
|
|
|
float pwm_frequency;
|
|
|
|
MotorState* states;
|
2022-04-11 13:35:53 +01:00
|
|
|
motor_config* configs;
|
2022-03-28 22:46:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------
|
|
|
|
// Constructors/Destructor
|
|
|
|
//--------------------------------------------------
|
|
|
|
public:
|
2022-04-25 16:16:02 +01:00
|
|
|
MotorCluster(PIO pio, uint sm, uint pin_base, uint pin_pair_count, Direction direction = NORMAL_DIR, float speed_scale = MotorState::DEFAULT_SPEED_SCALE,
|
|
|
|
float zeropoint = MotorState::DEFAULT_ZEROPOINT, float deadzone = MotorState::DEFAULT_DEADZONE, float freq = MotorState::DEFAULT_FREQUENCY, DecayMode mode = MotorState::DEFAULT_DECAY_MODE,
|
2022-04-05 16:53:36 +01:00
|
|
|
bool auto_phase = true, PWMCluster::Sequence *seq_buffer = nullptr, PWMCluster::TransitionData *dat_buffer = nullptr);
|
2022-04-25 16:16:02 +01:00
|
|
|
MotorCluster(PIO pio, uint sm, const pin_pair *pin_pairs, uint32_t length, Direction direction = NORMAL_DIR, float speed_scale = MotorState::DEFAULT_SPEED_SCALE,
|
|
|
|
float zeropoint = MotorState::DEFAULT_ZEROPOINT, float deadzone = MotorState::DEFAULT_DEADZONE, float freq = MotorState::DEFAULT_FREQUENCY, DecayMode mode = MotorState::DEFAULT_DECAY_MODE,
|
2022-04-05 16:53:36 +01:00
|
|
|
bool auto_phase = true, PWMCluster::Sequence *seq_buffer = nullptr, PWMCluster::TransitionData *dat_buffer = nullptr);
|
2022-04-25 16:16:02 +01:00
|
|
|
MotorCluster(PIO pio, uint sm, std::initializer_list<pin_pair> pin_pairs, Direction direction = NORMAL_DIR, float speed_scale = MotorState::DEFAULT_SPEED_SCALE,
|
|
|
|
float zeropoint = MotorState::DEFAULT_ZEROPOINT, float deadzone = MotorState::DEFAULT_DEADZONE, float freq = MotorState::DEFAULT_FREQUENCY, DecayMode mode = MotorState::DEFAULT_DECAY_MODE,
|
2022-04-05 16:53:36 +01:00
|
|
|
bool auto_phase = true, PWMCluster::Sequence *seq_buffer = nullptr, PWMCluster::TransitionData *dat_buffer = nullptr);
|
2022-03-28 22:46:58 +01:00
|
|
|
~MotorCluster();
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------
|
|
|
|
// Methods
|
|
|
|
//--------------------------------------------------
|
|
|
|
public:
|
|
|
|
bool init();
|
|
|
|
|
|
|
|
uint8_t count() const;
|
2022-04-05 16:53:36 +01:00
|
|
|
pin_pair pins(uint8_t motor) const;
|
2022-03-28 22:46:58 +01:00
|
|
|
|
|
|
|
void enable(uint8_t motor, bool load = true);
|
|
|
|
void enable(const uint8_t *motors, uint8_t length, bool load = true);
|
|
|
|
void enable(std::initializer_list<uint8_t> motors, bool load = true);
|
|
|
|
void enable_all(bool load = true);
|
|
|
|
|
|
|
|
void disable(uint8_t motor, bool load = true);
|
|
|
|
void disable(const uint8_t *motors, uint8_t length, bool load = true);
|
|
|
|
void disable(std::initializer_list<uint8_t> motors, bool load = true);
|
|
|
|
void disable_all(bool load = true);
|
|
|
|
|
|
|
|
bool is_enabled(uint8_t motor) const;
|
|
|
|
|
|
|
|
float duty(uint8_t motor) const;
|
|
|
|
void duty(uint8_t motor, float duty, bool load = true);
|
|
|
|
void duty(const uint8_t *motors, uint8_t length, float duty, bool load = true);
|
|
|
|
void duty(std::initializer_list<uint8_t> motors, float duty, bool load = true);
|
|
|
|
void all_to_duty(float duty, bool load = true);
|
|
|
|
|
|
|
|
float speed(uint8_t motor) const;
|
|
|
|
void speed(uint8_t motor, float speed, bool load = true);
|
|
|
|
void speed(const uint8_t *motors, uint8_t length, float speed, bool load = true);
|
|
|
|
void speed(std::initializer_list<uint8_t> motors, float speed, bool load = true);
|
|
|
|
void all_to_speed(float speed, bool load = true);
|
|
|
|
|
|
|
|
float phase(uint8_t motor) const;
|
|
|
|
void phase(uint8_t motor, float phase, bool load = true);
|
|
|
|
void phase(const uint8_t *motors, uint8_t length, float phase, bool load = true);
|
|
|
|
void phase(std::initializer_list<uint8_t> motors, float phase, bool load = true);
|
|
|
|
void all_to_phase(float phase, bool load = true);
|
|
|
|
|
|
|
|
float frequency() const;
|
|
|
|
bool frequency(float freq);
|
|
|
|
|
|
|
|
//--------------------------------------------------
|
2022-04-05 16:53:36 +01:00
|
|
|
void stop(uint8_t motor, bool load = true);
|
|
|
|
void stop(const uint8_t *motors, uint8_t length, bool load = true);
|
|
|
|
void stop(std::initializer_list<uint8_t> motors, bool load = true);
|
|
|
|
void stop_all(bool load = true);
|
|
|
|
|
|
|
|
void coast(uint8_t motor, bool load = true);
|
|
|
|
void coast(const uint8_t *motors, uint8_t length, bool load = true);
|
|
|
|
void coast(std::initializer_list<uint8_t> motors, bool load = true);
|
|
|
|
void coast_all(bool load = true);
|
|
|
|
|
2022-04-11 13:35:53 +01:00
|
|
|
void brake(uint8_t motor, bool load = true);
|
|
|
|
void brake(const uint8_t *motors, uint8_t length, bool load = true);
|
|
|
|
void brake(std::initializer_list<uint8_t> motors, bool load = true);
|
|
|
|
void brake_all(bool load = true);
|
|
|
|
|
2022-04-05 16:53:36 +01:00
|
|
|
void full_negative(uint8_t motor, bool load = true);
|
|
|
|
void full_negative(const uint8_t *motors, uint8_t length, bool load = true);
|
|
|
|
void full_negative(std::initializer_list<uint8_t> motors, bool load = true);
|
2022-04-09 01:41:42 +01:00
|
|
|
void all_full_negative(bool load = true);
|
2022-03-28 22:46:58 +01:00
|
|
|
|
2022-04-05 16:53:36 +01:00
|
|
|
void full_positive(uint8_t motor, bool load = true);
|
|
|
|
void full_positive(const uint8_t *motors, uint8_t length, bool load = true);
|
|
|
|
void full_positive(std::initializer_list<uint8_t> motors, bool load = true);
|
2022-04-09 01:41:42 +01:00
|
|
|
void all_full_positive(bool load = true);
|
2022-03-28 22:46:58 +01:00
|
|
|
|
|
|
|
void to_percent(uint8_t motor, float in, float in_min = MotorState::ZERO_PERCENT, float in_max = MotorState::ONEHUNDRED_PERCENT, bool load = true);
|
|
|
|
void to_percent(const uint8_t *motors, uint8_t length, float in, float in_min = MotorState::ZERO_PERCENT, float in_max = MotorState::ONEHUNDRED_PERCENT, bool load = true);
|
|
|
|
void to_percent(std::initializer_list<uint8_t> motors, float in, float in_min = MotorState::ZERO_PERCENT, float in_max = MotorState::ONEHUNDRED_PERCENT, bool load = true);
|
|
|
|
void all_to_percent(float in, float in_min = MotorState::ZERO_PERCENT, float in_max = MotorState::ONEHUNDRED_PERCENT, bool load = true);
|
|
|
|
|
|
|
|
void to_percent(uint8_t motor, float in, float in_min, float in_max, float speed_min, float speed_max, bool load = true);
|
|
|
|
void to_percent(const uint8_t *motors, uint8_t length, float in, float in_min, float in_max, float speed_min, float speed_max, bool load = true);
|
|
|
|
void to_percent(std::initializer_list<uint8_t> motors, float in, float in_min, float in_max, float speed_min, float speed_max, bool load = true);
|
|
|
|
void all_to_percent(float in, float in_min, float in_max, float speed_min, float speed_max, bool load = true);
|
|
|
|
|
|
|
|
void load();
|
|
|
|
|
|
|
|
//--------------------------------------------------
|
2022-04-05 16:53:36 +01:00
|
|
|
|
2022-04-09 01:41:42 +01:00
|
|
|
Direction direction(uint8_t motor) const;
|
|
|
|
void direction(uint8_t motor, Direction direction);
|
|
|
|
void direction(const uint8_t *motors, uint8_t length, Direction direction);
|
|
|
|
void direction(std::initializer_list<uint8_t> motors, Direction direction);
|
2022-04-29 13:02:00 +01:00
|
|
|
void all_directions(Direction direction);
|
2022-04-05 16:53:36 +01:00
|
|
|
|
|
|
|
float speed_scale(uint8_t motor) const;
|
|
|
|
void speed_scale(uint8_t motor, float speed_scale);
|
|
|
|
void speed_scale(const uint8_t *motors, uint8_t length, float speed_scale);
|
|
|
|
void speed_scale(std::initializer_list<uint8_t> motors, float speed_scale);
|
2022-04-29 13:02:00 +01:00
|
|
|
void all_speed_scales(float speed_scale);
|
2022-04-05 16:53:36 +01:00
|
|
|
|
2022-04-25 16:16:02 +01:00
|
|
|
float zeropoint(uint8_t motor) const;
|
|
|
|
void zeropoint(uint8_t motor, float zeropoint, bool load = true);
|
|
|
|
void zeropoint(const uint8_t *motors, uint8_t length, float zeropoint, bool load = true);
|
|
|
|
void zeropoint(std::initializer_list<uint8_t> motors, float zeropoint, bool load = true);
|
2022-04-29 13:02:00 +01:00
|
|
|
void all_zeropoints(float zeropoint, bool load = true);
|
2022-04-25 16:16:02 +01:00
|
|
|
|
2022-04-09 01:41:42 +01:00
|
|
|
float deadzone(uint8_t motor) const;
|
2022-04-11 13:35:53 +01:00
|
|
|
void deadzone(uint8_t motor, float deadzone, bool load = true);
|
|
|
|
void deadzone(const uint8_t *motors, uint8_t length, float deadzone, bool load = true);
|
|
|
|
void deadzone(std::initializer_list<uint8_t> motors, float deadzone, bool load = true);
|
2022-04-29 13:02:00 +01:00
|
|
|
void all_deadzones(float deadzone, bool load = true);
|
2022-04-11 13:35:53 +01:00
|
|
|
|
|
|
|
DecayMode decay_mode(uint8_t motor) const;
|
|
|
|
void decay_mode(uint8_t motor, DecayMode mode, bool load = true);
|
|
|
|
void decay_mode(const uint8_t *motors, uint8_t length, DecayMode mode, bool load = true);
|
|
|
|
void decay_mode(std::initializer_list<uint8_t> motors, DecayMode mode, bool load = true);
|
2022-04-29 13:02:00 +01:00
|
|
|
void all_decay_modes(DecayMode mode, bool load = true);
|
2022-04-05 16:53:36 +01:00
|
|
|
|
|
|
|
//--------------------------------------------------
|
2022-03-28 22:46:58 +01:00
|
|
|
private:
|
2022-04-09 01:41:42 +01:00
|
|
|
void apply_duty(uint8_t motor, float duty, DecayMode mode, bool load);
|
2022-04-29 13:02:00 +01:00
|
|
|
void create_motor_states(Direction direction, float speed_scale, float zeropoint,
|
|
|
|
float deadzone, DecayMode mode, bool auto_phase);
|
2022-03-28 22:46:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|