Fix directory structure for traffic lights

This commit is contained in:
Gabriel Augendre 2021-04-28 17:42:26 +02:00
parent 6a74634cbc
commit ed0ab8e139
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,8 @@
// Created by Gabriel Augendre on 27/04/2021.
//
#include "lib.h"
#include <lib.h>
#include <Arduino.h>
void waitForButton() {
while (digitalRead(BUTTON) == HIGH) {}

View File

@ -1,5 +1,5 @@
#include <Arduino.h>
#include "lib.h"
#include <lib.h>
void setup() {
pinMode(GREEN, OUTPUT);