esp32 firmware for a toaster reflow oven WIP!!!!!
您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
 
 
 
 
 
 
reflower/main/analog.h

21 行
381 B

/**
* TODO file description
*
* Created on 2020/01/03.
*/
#ifndef REFLOWER_ANALOG_H
#define REFLOWER_ANALOG_H
#define ANALOG_SAMPLE_TIME_MS 1000
#define REG_HISTORY_LEN 241
extern float reg_meas_history[REG_HISTORY_LEN];
extern float reg_tset_history[REG_HISTORY_LEN];
extern uint32_t history_counter;
void analog_init();
float analog_read();
#endif //REFLOWER_ANALOG_H