All pastes #2104106 Raw Edit

Stuff

public text v1 · immutable
#2104106 ·published 2012-01-19 16:55 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 <(elusive libraries)>
void foo();
void bar();

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

// rest of sketch follows here