Files @ b41e2aea6dd8
Branch filter:

Location: therm/display.h

matthewreed
Added correct temperature conversions to RTD version
#ifndef DISPLAY_H
#define DISPLAY_H

#include <stdlib.h>
#include "stm32f0xx_hal.h"
#include "states.h"
#include "ssd1306.h"
#include "stringhelpers.h"
#include "config.h"
#include "states.h"
#include "syslib.h"
#include "flash.h"
#include "gpio.h"
#ifdef MAX31865_RTD_SENSOR
#include "max31865.h"
#endif

void display_process(therm_settings_t* set, therm_status_t* status);

#endif