#### 2. Create a CoapRequest & add some Options (Client.java, FIXME 7-9):
#### 2. Create a CoapRequest & add some Options (Client.java, FIXME 6-8):
* A channel represents a single connection and is used to create and send requests
```java
...
...
@@ -166,7 +166,7 @@ You can find the required files in our repository at [https://gitlab.amd.e-techn
request.setUriPath("/temperature");
```
#### 3. Send the CoapRequest (Client.java, FIXME 7-9):
#### 3. Send the CoapRequest (Client.java, FIXME 9):
```java
clientChannel.sendMessage(request);
...
...
@@ -220,7 +220,7 @@ You can find the required files in our repository at [https://gitlab.amd.e-techn
while(true){
try{Thread.sleep(5000);}
catch(InterruptedExceptione){/*do nothing*/}
resource.changed();
resource.changed();// Notify
}
```
### 3. Implement an Air Conditioner Resource with the path `/ACControl`, that can be set to `high`, `medium`, `low` or `off` (Client.java & Server.java, TODO 12-15):