Skip to content

Commit

Permalink
Moved Preflight files to their own folder
Browse files Browse the repository at this point in the history
  • Loading branch information
keithmk authored and keithmk committed Oct 5, 2023
1 parent 498a693 commit 0023656
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is a test
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
if __name__ == "__main__":
# Initialize the Preflight Node
rospy.init_node("preflight")

print("Checking for Gazebo")
# Check if the Gazebo Node exists
if rospy.get_param("/is_simulation", None):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env python3

SubCheckList = open("SubChecklist.txt", "a+")
line = ["This is a test\n"]
SubCheckList.writelines(line)


SubCheckList.close()
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ breathe==4.34.0
myst-parser==0.18.0
sphinx-copybutton==0.5.0

# Terminal
blessed==1.20.0

# External Devices
pyserial==3.5

Expand Down

0 comments on commit 0023656

Please sign in to comment.