My modifications/additions to the code

Dependencies:   ADXL345 ADXL345_I2C IMUfilter ITG3200 Servo fishgait mbed-rtos mbed pixy_cam

Fork of robotic_fish_ver_4_8 by jetfishteam

main.cpp

Committer:
sandwich
Date:
2014-06-05
Revision:
23:ef1be367726e
Parent:
22:807d5467fbf6
Child:
24:9d75ed1462d6

File content as of revision 23:ef1be367726e:

#include "mbed.h"
#include "Servo.h"
//#include "rtos.h"
//#include "PwmReader.h"
//#include "PwmIn.h"
#include "MainController.h"
Serial pc(USBTX, USBRX);
Timer t;

int main()
{
    t.start();

    MainController mainCtrl;

    mainCtrl.start();

    //printf("started\n");
    while(true) {
        pc.printf("control: %d, frq: %.3f, vol: %.2f, amp: %.3f, yaw: %.2f, dut: %.2f, pit: %.2f, adj: %.2f, t: %.2f\n",
                  mainCtrl.getOpMode(), mainCtrl.getFrequency(), mainCtrl.getVolume(), mainCtrl.getAmplitude(), mainCtrl.getYaw(), mainCtrl.getDutyCycle(), mainCtrl.getPitch(), mainCtrl.getAdj(), t.read());

        //wait_ms(100);
    }
    //t.stop();
    //mainCtrl.stop();
}