All pastes #2104105 Raw Edit

Stuff

public text v1 · immutable
#2104105 ·published 2012-01-19 16:52 UTC
rendered paste body
** foo.cpp **
#include <(elusive libraries)>

void foo() {
    int sample = digitalRead(1);
    Serial.print(sample);
}

** bar.cpp **
#include <(elusive libraries)>

void bar() {
    int sample = analogRead(2);
    Serial.print(sample);
}


** external.h **
#include "foo.cpp"
#include "bar.cpp"

** arduino sketch **
#include "external.h"

// rest of sketch follows here