Skip to content

Commit

Permalink
Segregated pseudo and alchemy node
Browse files Browse the repository at this point in the history
  • Loading branch information
waseemR02 committed Jan 23, 2023
1 parent 81b22a8 commit 5c080ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions alchemy/pseudo_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ def __init__(self):
self.BIO_INFO = [0, 0, 0, 0, 0, 0, 0, 0]

#Create publisher for publishing data group wise
self.gas_pub = self.create_publisher(DiagnosticStatus, 'Gases', 10)
self.temp_pub = self.create_publisher(DiagnosticStatus, 'Temperatures', 10)
self.misc_pub = self.create_publisher(DiagnosticStatus, 'Miscellaneous', 10)
self.gas_pub = self.create_publisher(DiagnosticStatus, 'gases', 10)
self.temp_pub = self.create_publisher(DiagnosticStatus, 'temperatures', 10)
self.misc_pub = self.create_publisher(DiagnosticStatus, 'miscellaneous', 10)

# Create timer to publish Bio information every 1 second
self.timer = self.create_timer(1, self.publish_bio_info)
Expand Down

0 comments on commit 5c080ee

Please sign in to comment.