Skip to content
GitLab
Explore
Sign in
Admin message
Gitlab Update from 17.11.1 to 17.11.2 runs on 2025-05-14
Changes
Page history
formatting of eclipse import tutorial
authored
May 30, 2017
by
Björn Butzin
Hide whitespace changes
Inline
Side-by-side
home.markdown
View page @
7838073c
...
@@ -241,10 +241,11 @@ Depending on the received temperature, set the payload to high, medium, low or o
...
@@ -241,10 +241,11 @@ Depending on the received temperature, set the payload to high, medium, low or o
medium 25 <= Temperature < 28
medium 25 <= Temperature < 28
low 21 <= Temperature < 25
low 21 <= Temperature < 25
off Temperature < 21
off Temperature < 21
```
```
```
java
```
java
request
.
setPayload
(
“
medium
”
.
getBytes
());
request
.
setPayload
(
"
medium
"
.
getBytes
());
clientChannel
.
sendMessage
(
request
);
clientChannel
.
sendMessage
(
request
);
```
```