Explorar el Código

Added some print messages

master
BinHong Lee hace 7 años
padre
commit
58dbcbe990
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      main.c

+ 4
- 0
main.c Ver fichero

@@ -37,6 +37,7 @@ void buttonInterrupt()

if (trigger == 0)
{
printf("Paused\n");
//Set trigger and turn off buzzer
trigger = 1;
digitalWrite(BUZZER, LOW);
@@ -47,6 +48,7 @@ void buttonInterrupt()
photoTaken = 0;
trigger = 0;

printf("Continue\n");
//Double short beep to inform rider
digitalWrite(BUZZER, HIGH);
delay(100);
@@ -93,6 +95,8 @@ int main()
delay(100);
digitalWrite(BUZZER, LOW);

printf("While loop begins~\n");

while (1)
{
//Get gyro sensor input


Cargando…
Cancelar
Guardar