Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ For example, for a dataset collected with a `Behavior` device, you might have:

```python
import harp
reader = harp.create_reader("device.harp")
reader = harp.create_reader("device.yml")
```

### Read data from named register
Expand All @@ -54,7 +54,7 @@ reader.OperationControl.register.address
### Create device reader object with UTC datetime format

```python
reader = harp.create_reader("device.harp", epoch=harp.REFERENCE_EPOCH)
reader = harp.create_reader("device.yml", epoch=harp.REFERENCE_EPOCH)
```

### Read data with message type information
Expand Down