working on gpio interface and refactored author names

This commit is contained in:
Jonas Zeunert
2018-11-23 13:46:09 +01:00
parent 972f16b0f7
commit 00e640f469
63 changed files with 127 additions and 91 deletions

View File

@@ -2,7 +2,7 @@
* DisplayController.cpp
*
* Created on: Aug 7, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#include "DisplayController.h"

View File

@@ -2,7 +2,7 @@
* DisplayController.h
*
* Created on: Aug 7, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_DISPLAYCONTROLLER_H_

View File

@@ -2,7 +2,7 @@
* IDisplayController.h
*
* Created on: Aug 2, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_IDISPLAYCONTROLLER_H_

View File

@@ -2,7 +2,7 @@
* OutputDriver.cpp
*
* Created on: Aug 2, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#include "OutputDriver.h"

View File

@@ -2,7 +2,7 @@
* OutputDriver.h
*
* Created on: Aug 2, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_OUTPUTDRIVER_H_

View File

@@ -2,7 +2,7 @@
* Display.h
*
* Created on: Aug 2, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_DISPLAY_H_

View File

@@ -2,7 +2,7 @@
* IDisplay.h
*
* Created on: Aug 2, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_IDISPLAY_H_

View File

@@ -2,7 +2,7 @@
* ICabinetItem.h
*
* Created on: Aug 7, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_ICABINETITEM_H_

View File

@@ -2,7 +2,7 @@
* CabinetItem.h
*
* Created on: Aug 2, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_CABINETITEM_H_
@@ -25,11 +25,11 @@ namespace items
class OutputItem : public IOutputItem
{
public:
OutputItem(std::shared_ptr<utility::IOutputGPIOInterface> output_gpio_interface, unsigned int address, unsigned int i2c_address, unsigned int data_pin_address, std::string name);
OutputItem(std::shared_ptr<utility::IOutputGPIOInterface> output_gpio_interface, u_int8_t address, std::string name);
virtual ~OutputItem();
public:
const unsigned int address, i2c_address, data_pin_address;
const u_int8_t address;
const std::string name;
protected:

View File

@@ -2,7 +2,7 @@
* Lamp.cpp
*
* Created on: Aug 2, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#include "Lamp.h"

View File

@@ -2,7 +2,7 @@
* Lamp.h
*
* Created on: Aug 2, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_LAMP_H_
@@ -21,7 +21,7 @@ namespace items
class Lamp : public OutputItem, ILamp
{
public:
Lamp(std::shared_ptr<utility::IOutputGPIOInterface> output_gpio_interface, unsigned int address, unsigned int i2c_address, unsigned int data_pin, std::string name);
Lamp(std::shared_ptr<utility::IOutputGPIOInterface> output_gpio_interface, u_int8_t address, std::string name);
virtual ~Lamp() = default;
void activate();

View File

@@ -2,7 +2,7 @@
* Solenoid.cpp
*
* Created on: Aug 2, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#include "Solenoid.h"

View File

@@ -2,7 +2,7 @@
* Solenoid.h
*
* Created on: Aug 2, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_SOLENOID_H_

View File

@@ -2,7 +2,7 @@
* Sound.cpp
*
* Created on: Aug 2, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#include "Sound.h"

View File

@@ -2,7 +2,7 @@
* Sound.h
*
* Created on: Aug 2, 2018
* Author: rhetenor
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_SOUND_H_