Skip to content

Instantly share code, notes, and snippets.

@RaspPiGuy
Created March 18, 2014 13:25
#ifndef REALSIMPLE_H
#define REALSIMPLE_H
#include "Arduino.h"
class REALSIMPLE{
public:
REALSIMPLE();
void add2numbers(int a, int b);
private:
int baud_;
};
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment