Advertisement
gabbyshimoni

Example3-090518

May 9th, 2018
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. void setup() {
  2.   // put your setup code here, to run once:
  3.   Serial.begin(9600);
  4.  
  5.   Serial.println("Are you 16 years old? [yes/no]");
  6.   while (Serial.available() == 0);
  7.   char ch1 = Serial.read();
  8.   while (Serial.available() == 0);
  9.   char ch2 = Serial.read();
  10.  
  11.   if (ch1 == 'n' && ch2 == 'o') {
  12.     Serial.println("Cannot enter the Forum club");
  13.   }
  14.   if (ch1 == 'y' && ch2 == 'e') {
  15.     Serial.println("Show your ID to enter the Forum club");
  16.   }
  17. }
  18.  
  19. void loop() {
  20.   // put your main code here, to run repeatedly:
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement