Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove dubious temperature scaling
  • Loading branch information
bertoldia committed Feb 9, 2015
commit 021b9caa451f0f59d127480c801d29d9f7e59f18
4 changes: 2 additions & 2 deletions temper.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

/* Calibration adjustments */
/* See http://www.pitt-pladdy.com/blog/_20110824-191017_0100_TEMPer_under_Linux_perl_with_Cacti/ */
static float scale = 1.0287;
static float offset = -0.85;
static float scale = 1;
static float offset = 0;

float read_temp() {
int i;
Expand Down