Browse Source

Fix include

Robert Marshall 5 years ago
parent
commit
03923aa6ba
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Transmitter/src/main.cpp

+ 2 - 2
Transmitter/src/main.cpp

@@ -1,5 +1,5 @@
 #include <Arduino.h>
-#include <PIR.cpp>
+#include <Motion.cpp>
 #include <Transmitter.cpp>
 #include <Timer.cpp>
 #include <../../Common/LED.cpp>
@@ -48,6 +48,6 @@ void setup() {
 
 void loop() {
 	_motion.loop();
-	_timer.loop();
+	//_timer.loop();
 	_led.loop();
 }