Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / calibration_platform / station / test / test.pde @ 1916

History | View | Annotate | Download (519 Bytes)

1
/*
2
  ASCII table
3
 
4
 Prints out byte values in all possible formats:  
5
 * as raw binary values
6
 * as ASCII-encoded decimal, hex, octal, and binary values
7
 
8
 For more on ASCII, see http://www.asciitable.com and http://en.wikipedia.org/wiki/ASCII
9
 
10
 The circuit:  No external hardware needed.
11
 
12
 created 2006
13
 by Nicholas Zambetti 
14
 modified 18 Jan 2009
15
 by Tom Igoe
16
 
17
 <http://www.zambetti.com> 
18
 */
19
void setup() 
20
{ 
21
  Serial.begin(9600);    // Actual baud rate is 19200
22
} 
23

    
24
void loop() 
25
{ 
26
  Serial.println("Test!");
27
}