tstatus/thermal.h

19 lines
410 B
C

/* see LICENSE file for details on license */
#ifndef TSTATUS_THERMAL_H
#ifdef FISH
#define THERMAL_DIR "thermal_zone1"
/* you can add other computer hostnames here */
#else
#define THERMAL_DIR "thermal_zone1"
#endif
#define THERMAL_PRE "/sys/class/thermal/"
#define THERMAL_TMP "/temp"
int convert_milli_to_reg(int millidegree);
int thermal_update(struct module *module);
#endif
#define TSTATUS_THERMAL_H