/* Copyright (c) 2025 Rodrigo Arias Mallo * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef BARISTA_NTC_H #define BARISTA_NTC_H #ifdef __cplusplus extern "C" { #endif float ntc_resistance(int Vo); float ntc_temp(float omhs); #ifdef __cplusplus } #endif #endif /* BARISTA_NTC_H */