Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# ThermalTests

<<<<<<< HEAD
Software Test, Telemetry, and Control Prototyping for the SPICEsat thermal testbench.

Work done by Systems Integration & Test
Expand All @@ -16,3 +17,8 @@ All software is in the works.
Ideally will offer concurrent telemtry read & pid control loop testing.

requirements.txt on the way...
=======
Software Test, Telemetry, and Control Prototyping

Work done by Systems Integration & Test
>>>>>>> 456571bab87a6c49926cd22ae34cf054a86068e7
10 changes: 10 additions & 0 deletions multi_sensor_telemetry/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Multi-Sensor Telemetry Backend (TMP100 Network)

## Repository Structure

.
├── main.py # Orchestration / CLI
├── tmpsensor.py # TMPSensor class (real sensor)
├── fake_tmpsensor.py # FakeTMPSensor class (simulated data)
├── multi_tmpsensor.py # MultiTMPSensors class (manages multiple sensors)
└── README.md # Project documentation
11 changes: 10 additions & 1 deletion multi_sensor_telemetry/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,19 @@ def main():

parser = argparse.ArgumentParser()

<<<<<<< HEAD
try:
while True:
time.sleep(1)
except KeyboardInterrupt:
testtmp.stop()
testfake.stop()
=======
args = parser.parse_args()



if __name__ == "__main__":

main()
main()
>>>>>>> 456571bab87a6c49926cd22ae34cf054a86068e7
5 changes: 4 additions & 1 deletion multi_sensor_telemetry/tmpsensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,7 @@ def get_buffer(self):
def get_latest(self):
return self._latest

## only prints one value
<<<<<<< HEAD
=======
## only prints one value
>>>>>>> 456571bab87a6c49926cd22ae34cf054a86068e7