17 lines
391 B
C++
17 lines
391 B
C++
//
|
|
// Created by rhetenor on 5/6/19.
|
|
//
|
|
|
|
#include "DriverBoardItem.h"
|
|
|
|
using namespace flippR_driver::output;
|
|
|
|
items::detail::DriverBoardItem::DriverBoardItem(std::shared_ptr<OutputPinController> pin_controller, const uint8_t address) :
|
|
pin_controller(std::move(pin_controller)), address(address)
|
|
{}
|
|
|
|
uint8_t items::detail::DriverBoardItem::get_address() const
|
|
{
|
|
return this->address;
|
|
}
|