mirror of
https://gitlab.dit.htwk-leipzig.de/phillip.kuehne/dezibot.git
synced 2025-05-21 20:11:46 +02:00
25 lines
376 B
C++
25 lines
376 B
C++
/**
|
|
* @file Dezibot.cpp
|
|
* @author Anton Jacker, Hans Haupt, Saskia Duebener
|
|
* @brief
|
|
* @version 0.1
|
|
* @date 2023-11-26
|
|
*
|
|
* @copyright Copyright (c) 2023
|
|
*
|
|
*/
|
|
|
|
|
|
#include "Dezibot.h"
|
|
|
|
Dezibot::Dezibot():multiColorLight(){
|
|
|
|
void Dezibot::begin(void) {
|
|
infraredLight.begin();
|
|
lightDetection.begin();
|
|
motion.begin();
|
|
multiColorLight.begin();
|
|
};
|
|
|
|
};
|