Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mlogoth authored Jul 15, 2024
1 parent b77315a commit ecdb4c7
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@

Add the following line to the ```/etc/udev/rules.d/99-custom.rules``

```sh
SUBSYSTEM=="tty",ACTION=="add", ATTRS{idVendor}=="2a19", ATTRS{idProduct}=="0802", MODE="0777", SYMLINK+="ttyNUMATO"
```

# Numato Relay Interface ROS Node

## Overview
Expand All @@ -26,6 +19,10 @@ The Numato Relay Interface node is a ROS package designed to interface with a Nu
```bash
pip install pyserial
```
4. Add the following line to the ```/etc/udev/rules.d/99-custom.rules``
```sh
SUBSYSTEM=="tty",ACTION=="add", ATTRS{idVendor}=="2a19", ATTRS{idProduct}=="0802", MODE="0777", SYMLINK+="ttyNUMATO"
```

## Node Details

Expand Down Expand Up @@ -122,10 +119,10 @@ Main class for managing the overall Numato Relay Interface.

```xml
<launch>
<node name="numato_driver" pkg="your_package_name" type="numato_driver.py" output="screen">
<param name="port" value="/dev/ttyUSB0" />
<param name="baudrate" value="19200" />
<param name="timeout" value="0.1" />
<node name="numato_ros" pkg="numato_ros" type="numato_ros" output="screen">
<param name="port" value="/dev/ttyNUMATO" />
<param name="baudrate" value="115200" />
<param name="timeout" value="0.002" />
<param name="rate" value="10.0" />
<param name="inputs" value="$(arg inputs)" />
<param name="outputs" value="$(arg outputs)" />
Expand Down

0 comments on commit ecdb4c7

Please sign in to comment.