Skip to content

Instantly share code, notes, and snippets.

@kanokkorn
Forked from chrismeyersfsu/gist:3270358
Last active December 29, 2016 06:44
Show Gist options
  • Save kanokkorn/44174792cda99c1f2281535446acdec8 to your computer and use it in GitHub Desktop.
Save kanokkorn/44174792cda99c1f2281535446acdec8 to your computer and use it in GitHub Desktop.
Arduino Poor man's oscilloscope
#define ANALOG_IN 0
void setup() {
Serial.begin(115200);
}
void loop() {
int val = analogRead(ANALOG_IN);
Serial.write( 0xff );
Serial.write( (val >> 8) & 0xff );
Serial.write( val & 0xff );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment