d

Arduino.h

Committer:
kenken0721
Date:
2017-08-31
Revision:
1:bb86cdfb0586
Parent:
0:9e1fa4cfbc00

File content as of revision 1:bb86cdfb0586:

#ifndef MBED_ARDUINO_H
#define MBED_ARDUINO_H
 
#include "mbed.h"

class Arduino{
    public:
    long map(long x, long in_min, long in_max, long out_min, long out_max);
};

#endif