From f92e39d53d78012426c7c4cf3f7ee5202d8fea21 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Wed, 27 Jul 2022 16:24:44 -0400 Subject: [PATCH] updated temperature calibration T1, R1, T2, R2 --- cubesatsim/cubesatsim.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cubesatsim/cubesatsim.h b/cubesatsim/cubesatsim.h index 2c8606b1..5781124e 100644 --- a/cubesatsim/cubesatsim.h +++ b/cubesatsim/cubesatsim.h @@ -269,10 +269,10 @@ void eeprom_word_write(int addr, int val); short eeprom_word_read(int addr); int first_time = true; int first_read = true; -float T2 = 26.3; // Temperature data point 1 -float R2 = 167; // Reading data point 1 -float T1 = 2; // Temperature data point 2 -float R1 = 179; // Reading data point 2 +float T2 = 27; // Temperature data point 1 +float R2 = 170; // Reading data point 1 +float T1 = 7; // Temperature data point 2 +float R1 = 184; // Reading data point 2 int sensorValue; float Temp; float rest;