My Project
analog.h
Go to the documentation of this file.
1 // Copyright (c) 2023 Samuli Nyman
2 // SPDX-License-Identifier: MIT
3 
4 #ifndef __ANALOG_H
5 #define __ANALOG_H
6 
7 #include "Arduino.h"
8 
9 
10 float adcToVoltage(int value);
11 float analogReadVoltage(int pin);
12 
13 #endif
adcToVoltage
float adcToVoltage(int value)
Definition: analog.cpp:16
analogReadVoltage
float analogReadVoltage(int pin)
Definition: analog.cpp:21