You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
KED/bsl/csl/raspberry/peripherals/pinRaspberry.hpp

16 lines
271 B

#ifndef __PINRASPBERRY_HPP__
#define __PINRASPBERRY_HPP__
#include <iostream>
struct Pin_Raspberry : Pin<Pin_Raspberry>
{
void writeImpl(bool logic)
{
std::cout << "Raspberry pin set to " << logic << std::endl;
}
};
#endif // __PINRASPBERRY_HPP__