some more adc code

This commit is contained in:
2014-11-04 16:33:45 +01:00
parent eb89aef4a5
commit 4947094772
5 changed files with 130 additions and 55 deletions

9
fatal.cpp Normal file
View File

@ -0,0 +1,9 @@
#include "Streaming.h"
#include "fatal.h"
void fatal(uint8_t code) {
Serial << "Fatal: " << code << endl;
delay(1000);
while (true) ;
}