formatting of eclipse import tutorial authored by Björn Butzin's avatar Björn Butzin
...@@ -108,14 +108,13 @@ You can find the required files in our repository at [https://gitlab.amd.e-techn ...@@ -108,14 +108,13 @@ You can find the required files in our repository at [https://gitlab.amd.e-techn
``` ```
#### 3. Instantiate a new TemperatureResource (Server.java, FIXME 2): #### 3. Instantiate a new TemperatureResource (Server.java, FIXME 2):
* Resources are created like normal objects and added to the server * Resources are created like normal objects
```java ```java
CoapResource resource = new CoapResource(); CoapResource resource = new CoapResource();
``` ```
#### 4. Add the TemperatureResource to the ResourceServer (Server.java, FIXME 3): #### 4. Add the TemperatureResource to the ResourceServer (Server.java, FIXME 3):
* Resources are created like normal objects and added to the server
```java ```java
resourceServer.createResource(resource); resourceServer.createResource(resource);
...@@ -238,10 +237,10 @@ You can find the required files in our repository at [https://gitlab.amd.e-techn ...@@ -238,10 +237,10 @@ You can find the required files in our repository at [https://gitlab.amd.e-techn
Depending on the received temperature, set the payload to high, medium, low or off Depending on the received temperature, set the payload to high, medium, low or off
``` ```
high 28 <= Temperature high 28 <= Temperature
medium 25 <= Temperature < 28 medium 25 <= Temperature < 28
low 21 <= Temperature < 25 low 21 <= Temperature < 25
off Temperature < 21 off Temperature < 21
``` ```
```java ```java
... ...
......