This repository has been archived by the owner on Dec 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #495 from project-march/release/v0.3.0
Release v0.3.0
- Loading branch information
Showing
189 changed files
with
9,125 additions
and
670 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<launch> | ||
<node name="esp_adapter" pkg="march_data_collector" type="esp_adapter" output="screen"/> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
<launch> | ||
<node name="march_data_collector" pkg="march_data_collector" type="march_data_collector" output="screen"/> | ||
<arg name="moticon_ip" default="192.168.8.105" doc="The ip-adress with Moticon software running on it, defaults to | ||
EMS switch laptop on standard router"/> | ||
<arg name="pressure_soles" default="false" doc="Whether pressure soles will be connected"/> | ||
<arg name="esp" default="false" doc="Whether to launch the esp adapter"/> | ||
<arg name="logfile" default="false" doc="Whether the data input is from a log file" /> | ||
<node name="march_data_collector" pkg="march_data_collector" type="march_data_collector" output="screen"> | ||
<param name="moticon_ip" value="$(arg moticon_ip)" /> | ||
<param name="pressure_soles" value="$(arg pressure_soles)" /> | ||
</node> | ||
<node if="$(arg esp)" name="esp_adapter" pkg="march_data_collector" type="esp_adapter" output="screen"> | ||
<param name="logfile" value="$(arg logfile)"/> | ||
</node> | ||
<group if="$(arg logfile)"> | ||
<include file="$(find march_launch)/launch/upload_march_urdf.launch" /> | ||
</group> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<package format="2"> | ||
<name>march_data_collector</name> | ||
<version>0.0.0</version> | ||
<description>Collecting data for further processing</description> | ||
<description>Collecting data for further processing including sending to an Events Stream Processing engine</description> | ||
<maintainer email="[email protected]">rutger</maintainer> | ||
<license>TODO</license> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env python | ||
from march_data_collector import esp_adapter | ||
|
||
if __name__ == '__main__': | ||
esp_adapter.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.