example packages

This commit is contained in:
2025-05-24 19:00:57 -04:00
parent 2c8043db4f
commit a5b75ddfd5
14 changed files with 44 additions and 109 deletions

View File

@@ -0,0 +1,20 @@
import common_msgs.Messages.*;
public class Example_java {
public void run() {
while (true) {
// TODO: Implement node logic
System.out.println("Running example_java");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
public static void main(String[] args) {
Example_java node = new Example_java();
node.run();
}
}

View File

@@ -0,0 +1,4 @@
dependencies:
- common_msgs
language: java
name: ../exampleexample_java