wheelchair code for alexa integration

Dependencies:   mbed

Fork of wheelchaircontrol by ryan lin

wheelchair.cpp

Committer:
ryanlin97
Date:
2018-08-17
Revision:
12:3cf6376007c6
Parent:
11:75f0f13ff6c1

File content as of revision 12:3cf6376007c6:

#include "wheelchair.h"

bool manual_drive = false;
volatile float north;
//volatile double curr_yaw;
double curr_yaw;
double Setpoint, Output;

void Wheelchair::compass_thread() {
    
    }
    
Wheelchair::Wheelchair(PinName xPin, PinName yPin, Serial* pc, Timer* time )
{
    x = new PwmOut(xPin);
    y = new PwmOut(yPin);
    //imu = new chair_MPU9250(pc, time);
    Wheelchair::stop();
    out = pc;
    out->printf("wheelchair setup done \n");
    ti = time;
}

/*
* joystick has analog out of 200-700, scale values between 1.3 and 3.3
*/
void Wheelchair::move(float x_coor, float y_coor)
{

    float scaled_x = ((x_coor * 1.6f) + 1.7f)/3.3f;
    float scaled_y = (3.3f - (y_coor * 1.6f))/3.3f;
    
   // lowPass(scaled_x);
    //lowPass(scaled_y);
    
    x->write(scaled_x);
    y->write(scaled_y);
    
    //out->printf("yaw %f\n", imu->yaw());

}

void Wheelchair::forward()
{
    x->write(high);
    y->write(def+offset);
}

void Wheelchair::backward()
{
    x->write(low);
    y->write(def);
}

void Wheelchair::right()
{
    x->write(def);
    y->write(low);
}

void Wheelchair::left()
{
    x->write(def);
    y->write(high);
}

void Wheelchair::stop()
{
    x->write(def);
    y->write(def);
}
// counter clockwise is -
// clockwise is +
double Wheelchair::turn_right(int deg)
{
    return;
}

double Wheelchair::turn_left(int deg)
{
    return;
}

void Wheelchair::turn(int deg)
{
 return;   
}