Skip to content

Commit

Permalink
Revert relative paths in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
cimm committed Jul 19, 2018
1 parent b870e34 commit edf1e67
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/TheThingsNetwork.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RX Delay 1: 1000
RX Delay 2: 2000
```

See the [DeviceInfo](../examples/DeviceInfo/DeviceInfo.ino) example.
See the [DeviceInfo](https://github.com/TheThingsNetwork/arduino-device-lib/blob/master/examples/DeviceInfo/DeviceInfo.ino) example.

## Method: `onMessage`

Expand All @@ -78,7 +78,7 @@ void onMessage(void (*cb)(const byte* payload, size_t length, port_t port));
- `size_t length`: Number of bytes.
- `port_t port`: The port addressed.
See the [Receive](../examples/Receive/Receive.ino) example.
See the [Receive](https://github.com/TheThingsNetwork/arduino-device-lib/blob/master/examples/Receive/Receive.ino) example.
## Method: `join`
Expand Down Expand Up @@ -115,7 +115,7 @@ Returns `true` or `false` depending on whether the activation was successful.
Call the method with no arguments if the device's LoRa module comes with pre-flashed values.
See the [SendABP](../examples/SendABP/SendABP.ino) example.
See the [SendABP](https://github.com/TheThingsNetwork/arduino-device-lib/blob/master/examples/SendABP/SendABP.ino) example.
## Method: `sendBytes`
Expand All @@ -138,7 +138,7 @@ Returns a success or error code and logs the related error message:
* `TTN_SUCCESSFUL_RECEIVE`: Successful transmission. Received \<N> bytes
* `TTN_ERROR_UNEXPECTED_RESPONSE`: Unexpected response: \<Response>

See the [SendOTAA](../examples/SendOTAA/SendOTAA.ino) example.
See the [SendOTAA](https://github.com/TheThingsNetwork/arduino-device-lib/blob/master/examples/SendOTAA/SendOTAA.ino) example.

## Method: `poll`

Expand All @@ -153,7 +153,7 @@ int8_t poll(port_t port = 1, bool confirm = false);
Returns the result of `sendBytes()`.
See the [Receive](../examples/Receive/Receive.ino) example.
See the [Receive](https://github.com/TheThingsNetwork/arduino-device-lib/blob/master/examples/Receive/Receive.ino) example.
## Method: `provision`
Expand Down

0 comments on commit edf1e67

Please sign in to comment.