/* * pin.cpp * * Created: 25.01.2020 21:02:41 * Author: netz */ #ifndef BLUBBLIB_PIN_HPP #define BLUBBLIB_PIN_HPP #include namespace blubblib { template struct pin { /** * \brief * Set or Unset the Output * \param value * true = set, false = unset * \return void */ static void Set(bool value = true) { if (value) { PortT::Port(PortT::Port() | (1<