Simple attitude example

This commit is contained in:
Philip Johansson 2021-01-03 23:54:44 +01:00
parent 45a816b599
commit c3e072e2d6

View File

@ -36,11 +36,46 @@ void connectWiFi() {
Serial.println(WiFi.localIP());
}
// Simple test. We also have to account for hipp angle which makes this a little more complex
void testRemoteCallback(const IRemote::Output& o) {
for (size_t i = 0; i < 6; ++i) {
body.legs[i].setPos(Leg::Hipp, double(o.attitude.roll) * pi / 2 );
body.legs[i].setPos(Leg::Knee, double(o.attitude.pitch) * pi / 2 );
// Serial.printf("CB: %f, %f\n", o.attitude.roll, o.attitude.pitch);
struct Limb {
float hipp;
float knee;
float bodyAngle;
};
std::array<Limb, 6> legs;
// Initialization
const float angleBetweenLegs = pi * 2.0f / 6.0f;
float bodyAngle = pi / 2.0f;
for (auto& leg : legs)
{
leg.bodyAngle = bodyAngle;
// Just to initialize
leg.knee = 0.0f;
leg.hipp = 0.0f;
bodyAngle -= angleBetweenLegs;
}
// Attitude
for (auto& leg : legs)
{
// For now yaw will not be overriden by anything
leg.hipp = -o.attitude.yaw;
leg.knee += sinf(leg.bodyAngle) * o.attitude.roll;
leg.knee += cosf(leg.bodyAngle) * o.attitude.pitch;
leg.knee -= o.attitude.elevator;
}
// Actuate
for (size_t i = 0; i < body.legs.size(); ++i) {
body.legs[i].setPos(Leg::Hipp, legs[i].hipp);
body.legs[i].setPos(Leg::Knee, legs[i].knee);
}
}