Files @ b41e2aea6dd8
Branch filter:

Location: therm/pid.h

matthewreed
Added correct temperature conversions to RTD version
1
2
3
4
5
6
7
8
#ifndef PIDS_H
#define PIDS_H

#include "states.h"

int16_t pid_update(uint16_t k_p, uint16_t k_i, uint16_t k_d, int16_t temp, uint8_t temp_frac, int16_t setpoint, therm_settings_t* set, therm_status_t* status);

#endif