Luke Cartwright / Mbed 2 deprecated ELEC2645_Project_el18loc_nearlythere

Dependencies:   mbed

LUTs/LUTs.h

Committer:
lukeocarwright
Date:
2020-05-06
Revision:
9:f6ba53e355a0
Parent:
7:33cb5f2db1ee
Child:
10:258a1eca02cc

File content as of revision 9:f6ba53e355a0:

#ifndef LUTs_H
#define LUTs_H

#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"


/** LUTs class
 * @author Luke Cartwright, University of Leeds
 * @brief generates LUTs
 * @date May 2020
*/
class LUTs
{
public:
    //constructor
    LUTs();
    //destructior
    ~LUTs();

    //variables



    //methods
    void sin_wavetable();
    //uint16_t get_sin(int i);

private:
//variables
    float rem;
    float sin_d;
    uint16_t sin_u;
    int i;
    
};
#endif