All pastes #2104107 Raw Edit

Stuff

public text v1 · immutable
#2104107 ·published 2012-01-19 16:56 UTC
rendered paste body
** foo.cpp **
#include "external.h"

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

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

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