formatting of eclipse import tutorial authored by Björn Butzin's avatar Björn Butzin
......@@ -243,8 +243,9 @@ Depending on the received temperature, set the payload to high, medium, low or o
off Temperature < 21
```
```java
request.setPayload(medium.getBytes());
request.setPayload("medium".getBytes());
clientChannel.sendMessage(request);
```