inital commit

This commit is contained in:
Carl Klemm 2019-05-06 19:06:49 +02:00
commit 51a5e6fc28
10 changed files with 489 additions and 0 deletions

13
comperator.h Normal file
View file

@ -0,0 +1,13 @@
#pragma once
#include <avr/io.h>
class Comperator
{
static constexpr bool INTERNAL_REFERANCE = true;
public:
Comperator();
static void on();
static void off();
static bool compare();
};