Skip to content

Instantly share code, notes, and snippets.

@RaspPiGuy
Created March 18, 2014 13:24
#include "Arduino.h"
#include "Realsimple_7.h"
REALSIMPLE::REALSIMPLE(){
baud_ = 9600;
}
void REALSIMPLE::add2numbers(int a, int b){
Serial.begin(baud_);
int c;
c = a + b;
Serial.println(c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment