14 lines
212 B
C++
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();
|
|
};
|