mirror of
				https://github.com/zyphlar/open-access-control-minimal-http.git
				synced 2024-03-08 15:57:47 +00:00 
			
		
		
		
	Fixed stray lines and comments
This commit is contained in:
		
							parent
							
								
									930448a360
								
							
						
					
					
						commit
						1c7f317421
					
				@ -31,7 +31,9 @@
 | 
				
			|||||||
 * Relay outputs on digital pins 6,7,8,9 //TODO: fix this conflict -WB
 | 
					 * Relay outputs on digital pins 6,7,8,9 //TODO: fix this conflict -WB
 | 
				
			||||||
 * Reader 1: pins 2,3
 | 
					 * Reader 1: pins 2,3
 | 
				
			||||||
 * Ethernet: pins 10,11,12,13 (reserved for the Ethernet shield)
 | 
					 * Ethernet: pins 10,11,12,13 (reserved for the Ethernet shield)
 | 
				
			||||||
 * LCD: pins 7, 6, 5, 4, 3, 2
 | 
					 * LCD: pins 4, 3, 2
 | 
				
			||||||
 | 
					 * Warning buzzer: 8
 | 
				
			||||||
 | 
					 * Warning led: 9
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 * Quickstart tips: 
 | 
					 * Quickstart tips: 
 | 
				
			||||||
 * Compile and upload the code, then log in via serial console at 57600,8,N,1
 | 
					 * Compile and upload the code, then log in via serial console at 57600,8,N,1
 | 
				
			||||||
@ -191,9 +193,6 @@ void loop()                                     // Main branch, runs over and ov
 | 
				
			|||||||
    lcd.print(secRemaining);
 | 
					    lcd.print(secRemaining);
 | 
				
			||||||
    lcd.print(" remain    ");
 | 
					    lcd.print(" remain    ");
 | 
				
			||||||
       
 | 
					       
 | 
				
			||||||
 | 
					 | 
				
			||||||
      lcd.print(remaining);
 | 
					 | 
				
			||||||
      
 | 
					 | 
				
			||||||
    if(remaining == 300) {
 | 
					    if(remaining == 300) {
 | 
				
			||||||
      for(int berp=0; berp<3; berp++){
 | 
					      for(int berp=0; berp<3; berp++){
 | 
				
			||||||
        tone(buzzerPin, 784, 300); 
 | 
					        tone(buzzerPin, 784, 300); 
 | 
				
			||||||
@ -212,7 +211,7 @@ void loop()                                     // Main branch, runs over and ov
 | 
				
			|||||||
    if(remaining == 60) {
 | 
					    if(remaining == 60) {
 | 
				
			||||||
      for(int berp=0; berp<5; berp++){
 | 
					      for(int berp=0; berp<5; berp++){
 | 
				
			||||||
        digitalWrite(warningLED, HIGH);
 | 
					        digitalWrite(warningLED, HIGH);
 | 
				
			||||||
            lcd.setCursor(15, 1);        
 | 
					        lcd.setCursor(15, 1);        
 | 
				
			||||||
        lcd.print("!");
 | 
					        lcd.print("!");
 | 
				
			||||||
        tone(buzzerPin, 1047, 100); 
 | 
					        tone(buzzerPin, 1047, 100); 
 | 
				
			||||||
        delay(130);
 | 
					        delay(130);
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user