Bike-X  0.8
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
arduino_test.cpp
Go to the documentation of this file.
1 void setup()
2 {
3  Serial.begin(9600);
4  Serial.println("Teste 123");
5 }
6 
7 
8 void loop()
9 {
10 
11  int input = 0;
12 
13  if (Serial.available() > 0)
14  {
15 
16  input = Serial.read();
17 
18  switch(input)
19  {
20  case '0':
21  case 0:
22  Serial.println(analogRead(A0));
23  break;
24  case '1':
25  case 1:
26  case 't':
27  Serial.println(analogRead(A1));
28  break;
29  case '2':
30  case 2:
31  Serial.println(analogRead(A2));
32  break;
33  case '3':
34  case 3:
35  case 'r':
36  input = Serial.parseInt();
37  analogWrite(3, input);
38  break;
39  case '4':
40  case 4:
41  input = Serial.read();
42  analogWrite(4, input);
43  break;
44  case '13':
45  case 13:
46  Serial.println("Wat ");
47  break;
48  default:
49  Serial.print("Unknow input: ");
50  Serial.println((char)input);
51  }
52 
53  }
54 }
void loop()
Definition: arduino_test.cpp:8
void setup()
Definition: arduino_test.cpp:1