Merge branch display into release

This commit is contained in:
Anina Morgner
2024-06-12 21:36:56 +02:00
28 changed files with 172291 additions and 12 deletions

View File

@@ -3,7 +3,11 @@
//
#define SDA_PIN 1
#define SCL_PIN 2
#include "Dezibot.h"
<<<<<<< HEAD
#include <SPI.h>
#include <Adafruit_NeoPixel.h>
@@ -14,10 +18,27 @@
#define GPIO_LED 48
void Dezibot::begin(void) {
=======
#include <Wire.h>
Dezibot::Dezibot():multiColorLight(){};
void Dezibot::begin(void) {
Wire.begin(SDA_PIN,SCL_PIN);
infraredLight.begin();
lightDetection.begin();
>>>>>>> remotes/origin/feature/#9-display
motion.begin();
lightDetection.begin();
colorDetection.begin();
multiColorLight.begin();
<<<<<<< HEAD
motionDetection.begin();
infraredLight.begin();
}
=======
display.begin();
};
>>>>>>> remotes/origin/feature/#9-display