Porting and compiling SmartLightsController
[iot2.git] / benchmarks / drivers / LabRoom / LabRoom.java
1 package iotcode.LabRoom;
2
3 import iotcode.interfaces.Room;
4
5 /** LabRoom implements Room as a needed object for room identification
6  *
7  * @author      Rahmadi Trimananda <rahmadi.trimananda @ uci.edu>
8  * @version     1.0                
9  * @since       2016-04-22
10  */
11 public class LabRoom implements Room {
12
13         public LabRoom() {
14
15         }
16
17         public int getRoomID() {
18                 return 0;
19         }
20 }