summaryrefslogtreecommitdiff
path: root/Venus_Skeleton/libs/TrueRandom/examples/Magic8Ball/Magic8Ball.pde
blob: 101bd385858aa7a58dc8905603b502f45e8cd6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 * A magic 8 ball.
 *
 * Press the reset button to see into the future.
 *
 * View the answer to your question in the Serial Monitor, at 19200 baud.
 *
 * Press the Arduino reset button to ask another question.
 *
 */

#include <TrueRandom.h>

char* answers[20] = {
  "As I see it, yes",
  "It is certain",
  "It is decidedly so",
  "Mostly likely",
  "Outlook good",
  "Signs point to yes",
  "Without a doubt",
  "Yes",
  "Yes - definitely",
  "You may rely on it",
  "Reply hazy, try again",
  "Ask again later",
  "Better not tell you now",
  "Cannot predict now",
  "Concentrate and ask again",
  "Don't count on it",
  "My reply is no",
  "My sources say no",
  "Outlook not so good",
  "Very doubtful"
};

int answerNumber;

void setup() {
  Serial.begin(9600);

  Serial.print("The answer is ");
  
  // Dramatic pause
  delay(1000);
  Serial.print(". ");
  delay(1000);
  Serial.print(". ");
  delay(1000);
  Serial.print(". ");
  delay(1000);

  answerNumber = TrueRandom.random(20);
  Serial.println( answers[answerNumber] );
}

void loop() {
  ; // Do nothing
}