-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
627dc50
commit e5da452
Showing
4 changed files
with
152 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
// Leka - LekaOS | ||
// Copyright 2023 APF France handicap | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
#include "HappyFishy.h" | ||
|
||
#include "rtos/ThisThread.h" | ||
|
||
#include "MathUtils.h" | ||
|
||
using namespace leka; | ||
using namespace std::chrono; | ||
|
||
void HappyFishy::init() | ||
{ | ||
_event_loop.registerCallback([this] { run(); }); | ||
} | ||
|
||
auto HappyFishy::sealConvertToPwmFrom(float angle) const -> float | ||
{ | ||
auto res = utils::math::map(angle, kMinAngleInput, kMaxAngleInput, kMinPwmOutput, kMaxPwmOutput); | ||
return res; | ||
} | ||
|
||
void HappyFishy::start() | ||
{ | ||
should_stop = false; | ||
_event_loop.start(); | ||
} | ||
|
||
void HappyFishy::stop() | ||
{ | ||
should_stop = true; | ||
_event_loop.stop(); | ||
rtos::ThisThread::sleep_for(100ms); | ||
stopMotors(); | ||
} | ||
|
||
void HappyFishy::run() | ||
{ | ||
if (should_stop || _battery.isCharging()) { | ||
stopMotors(); | ||
return; | ||
} | ||
|
||
if (move_left) { | ||
spinLeft(0.25F, 0.25F); | ||
rtos::ThisThread::sleep_for(300ms); | ||
} else { | ||
spinRight(0.25F, 0.25F); | ||
rtos::ThisThread::sleep_for(320ms); | ||
} | ||
move_left = !move_left; | ||
|
||
_event_loop.start(); | ||
} | ||
|
||
void HappyFishy::stopMotors() | ||
{ | ||
_motor_right.stop(); | ||
_motor_left.stop(); | ||
} | ||
|
||
void HappyFishy::spinLeft(float left_speed, float right_speed) | ||
{ | ||
_motor_left.spin(Rotation::clockwise, left_speed); | ||
_motor_right.spin(Rotation::clockwise, right_speed); | ||
} | ||
|
||
void HappyFishy::spinRight(float left_speed, float right_speed) | ||
{ | ||
_motor_left.spin(Rotation::counterClockwise, left_speed); | ||
_motor_right.spin(Rotation::counterClockwise, right_speed); | ||
} | ||
|
||
void HappyFishy::moveForward(float speed) | ||
{ | ||
_motor_left.spin(Rotation::counterClockwise, speed); | ||
_motor_right.spin(Rotation::clockwise, speed); | ||
} | ||
|
||
void HappyFishy::moveBackward(float speed) | ||
{ | ||
_motor_left.spin(Rotation::clockwise, speed); | ||
_motor_right.spin(Rotation::counterClockwise, speed); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
// Leka - LekaOS | ||
// Copyright 2023 APF France handicap | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
#pragma once | ||
|
||
#include "interface/drivers/Battery.h" | ||
#include "interface/drivers/Motor.h" | ||
#include "interface/libs/EventLoop.h" | ||
#include "interface/libs/IMUKit.hpp" | ||
|
||
namespace leka { | ||
|
||
class HappyFishy | ||
{ | ||
public: | ||
HappyFishy(interface::EventLoop &event_loop, interface::Battery &battery, interface::Motor &motor_left, | ||
interface::Motor &motor_right, interface::IMUKit &imu_kit) | ||
: _event_loop(event_loop), | ||
_battery(battery), | ||
_motor_left(motor_left), | ||
_motor_right(motor_right), | ||
_imukit(imu_kit) | ||
{ | ||
} | ||
|
||
~HappyFishy() = default; | ||
|
||
void init(); | ||
void start(); | ||
void stop(); | ||
|
||
private: | ||
[[nodiscard]] auto sealConvertToPwmFrom(float angle) const -> float; | ||
|
||
void run(); | ||
|
||
void stopMotors(); | ||
void spinRight(float left_speed, float right_speed); | ||
void spinLeft(float left_speed, float right_speed); | ||
void moveForward(float speed); | ||
void moveBackward(float speed); | ||
|
||
interface::EventLoop &_event_loop; | ||
|
||
interface::Battery &_battery; | ||
interface::Motor &_motor_left; | ||
interface::Motor &_motor_right; | ||
interface::IMUKit &_imukit; | ||
|
||
const float kMinAngleInput = 0.F; | ||
const float kMaxAngleInput = 30.F; | ||
const float kMinPwmOutput = 0.15F; // Min to move robot | ||
const float kMaxPwmOutput = 0.70F; | ||
|
||
const float kRollTolerance = 3.F; // in degrees | ||
const float kPitchTolerance = 3.F; // in degrees | ||
|
||
bool move_left = true; | ||
|
||
bool should_stop = true; | ||
}; | ||
|
||
} // namespace leka |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters