example packages
This commit is contained in:
13
example/example_python/example_python.py
Normal file
13
example/example_python/example_python.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from common_msgs import *
|
||||
import time
|
||||
|
||||
class Example_python:
|
||||
def run(self):
|
||||
while True:
|
||||
# TODO: Implement node logic
|
||||
print(f"Running example_python")
|
||||
time.sleep(1)
|
||||
|
||||
if __name__ == "__main__":
|
||||
node = Example_python()
|
||||
node.run()
|
4
example/example_python/package.bellande
Normal file
4
example/example_python/package.bellande
Normal file
@@ -0,0 +1,4 @@
|
||||
dependencies:
|
||||
- common_msgs
|
||||
language: python
|
||||
name: ../exampleexample_python
|
Reference in New Issue
Block a user