Merge remote-tracking branch 'origin/develop' into mueller/rw-cmds

This commit is contained in:
Robin Müller 2022-05-10 17:57:29 +02:00
commit 9d105ee97f
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
3 changed files with 13 additions and 1 deletions

View File

@ -14,6 +14,10 @@ list yields a list of all related PRs for each release.
- Added more RW HK handling and RW Assembly commands
## Added
- Helper printout for heater commands
# [v1.10.0 and before]
- Add additional heater commands to command health states

View File

@ -163,6 +163,14 @@ def heater_idx_to_obj(heater: int) -> ObjectId:
def prompt_heater() -> int:
while True:
print("HEATER 0 | PLOC PROC Board")
print("HEATER 1 | PCDU Board")
print("HEATER 2 | ACS Board")
print("HEATER 3 | OBC Board")
print("HEATER 4 | CAMERA")
print("HEATER 5 | STR")
print("HEATER 6 | DRO")
print("HEATER 7 | HPA")
heater_number = input("Type number of heater to switch [0-7]: ")
if not heater_number.isdigit():
print("Heater number not a digit")

View File

@ -18,7 +18,7 @@ from pus_tc.devs.imtq import ImtqSetIds
from tmtccmd.utility.obj_id import ObjectId, ObjectIdDictT
import config.object_ids as obj_ids
from .devs.reaction_wheel import handle_rw_hk_data
from pus_tc.devs.reaction_wheels import handle_rw_hk_data
LOGGER = get_console_logger()