Files
AsteleMotor/comperator.h
2019-05-06 19:06:49 +02:00

14 lines
212 B
C++

#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();
};