- Add class for controlling fans for cooling the motor drivers - Add configuration for left and right fan to config.cpp - Create fan task in main.cpp - Add getStatus function to controlledMotor class
33 lines
723 B
C++
33 lines
723 B
C++
#pragma once
|
|
|
|
#include "motordrivers.hpp"
|
|
#include "motorctl.hpp"
|
|
#include "joystick.hpp"
|
|
|
|
#include "gpio_evaluateSwitch.hpp"
|
|
#include "buzzer.hpp"
|
|
#include "control.hpp"
|
|
#include "fan.hpp"
|
|
|
|
|
|
//create global controlledMotor instances for both motors
|
|
extern controlledMotor motorLeft;
|
|
extern controlledMotor motorRight;
|
|
|
|
//create global joystic instance
|
|
extern evaluatedJoystick joystick;
|
|
|
|
//create global evaluated switch instance for button next to joystick
|
|
extern gpio_evaluatedSwitch buttonJoystick;
|
|
|
|
//create global buzzer object
|
|
extern buzzer_t buzzer;
|
|
|
|
//create global control object
|
|
extern controlledArmchair control;
|
|
|
|
//configuration for fans
|
|
extern fan_config_t configFanLeft;
|
|
extern fan_config_t configFanRight;
|
|
|