Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Plotting/Plotting.h
- Committer:
- yeongsookim
- Date:
- 2019-11-03
- Revision:
- 0:3ead6014ad51
File content as of revision 0:3ead6014ad51:
#ifndef MBED_PLOTTING_H
#define MBED_PLOTTING_H
#include "mbed.h"
class Plotting
{
private:
float m_rgfData[32];
unsigned int m_uiDataCount;
public:
Plotting();
void reset();
void put(float data, int index);
void put(int data, int index);
void put(unsigned int data, int index);
void send(Serial *port);
};
#endif