Assignment 2 Smart Home Controller In this assignment, you will continue working on the Smart Home Controller challenge playing the role of "Smart Builders", i.e., a bunch of developers who develop...

1 answer below »
Java programming with IDE question


Assignment 2 Smart Home Controller In this assignment, you will continue working on the Smart Home Controller challenge playing the role of "Smart Builders", i.e., a bunch of developers who develop custom smart homes by putting together various components. You will now face three challenges: • Adapting an Old Sensor. You are given a temperature sensor driver that does not satisfy the Simple Smart Device Collaboration Standard (SSDCS). You will need to use the adapter pattern so that you bring it up to SSDCS standards. • Adapting a Sensor with inverted control. You are also given a temperature sensor that not only does not support SSDCS, but it generates messages in response to temperature events, following the observer pattern. You will need to combine observer and adapter pattern to use this new sensor in your project. • A Customizable Furnace. You are building your own family of SSDCS-compliant furnaces with various extra's and components. You will need to apply the decorator pattern in order to make sure that the furnace always initializes the appropriate components when it is turned on. Recall: Sensors, Controllers and Actuators of various vendors are able to work together through the use of Interfaces. Specifically, a consortium of smart home vendors, called "ITEC3030 Smart Home Consortium” worked together to produce the Simple Smart Device Collaboration Standard (SSDCS) in form of a set of Java Interfaces. The Interfaces are in Standards.jar and the JavaDoc- generated Documentation can be found in links.txt file. The following file is a driver for testing out your various designs: Main.java, a test bed where various sensors can be created and controlled/tested. For this assignment you will need to complete the following exercises: Exercise 1 (20%) OldTemp Inc. is a company that was developing sensors before SSDCS existed. You need to use one of their sensors OldTempSensor which obviously does not comply with SSDCS. The company offers you OldTempSensorDriver.jar. You will also need OldTempSensorDevice.jar that simulates their hardware. You can find JavaDoc for both driver and device in the link.txt file. Use the adapter pattern to use OldTempSensor in your integration project so that it complies with SSDCS. Name your Adapter OldTempSensorAdapter. Submit: 1. A run of scenario 1 (see Main.java). 2. A 2–3-minute uninterrupted video presenting your solutions and demonstrating the code. The video should be staged to show: (i) how you set up your Eclipse project from scratch and import the Java files, (ii) how you import the driver in the project (including showing that it does not work without the import), and (iii) how you run it. 3. The JAVA files relating to your solution (i.e., the OldTempSensorAdapter.java and any other file you needed to create). 4. A link to a JavaDoc describing your classes. 5. A class diagram demonstrating your solution. Exercise 2 (50%) NewTemp Inc. is a company that is developing sensors just ignoring SSDCS. Instead, they implement part of an observer pattern in which the sensor is a Subject generating notifications. The company offers you NewTempSensorDriver.jar and its JavaDoc where the observer implementation is described. As above they also have a device simulator NewTempSensorDevice.jar. Use the adapter pattern to comply with the observer pattern that NewTemp imposes. It also needs to implement the AbstractNewTempSensorAdapter interface. Name your Adapter NewTempSensorAdapter. The following specification must be met: • For every new temperature sent from the hardware the adapter should report: "Sensor ([sensor name]) receiving new temperature: [temperature]", where [sensor name] is the name, you have given to your sensor, and [temperature] is the temperature your adapter is observing. For example, "Sensor (o2) receiving new temperature: 35" • Main must be able to acquire the latest reading through getReading() • You should be able to send your own temperatures to the driver via newTemperature(int) and receive the report as above. Submit: 1. A run of Scenario 2 (see Main.java) [includes scenario coming from device, acquisition of the latest reading and triggering a new temperature] 2. The JAVA files relating to your solution. 3. A link to a JavaDoc describing your classes. 4. A class diagram representing your solution. 5. A sequence diagram showing what happens when newTemperature(0) is called from Main. Exercise 3 (30%) Smart Builders also decided to start building furnaces. They call their family of furnaces OurFurnace and they are SSDCS compliant. The basic furnace (which includes the basic components of a furnace) can be augmented with a Humidifier and a WiFi (for smartphone control). Depending on whether the furnace has these components, they must turn on when the furnace turns on. As it stands, they only have one model PlainGasF1, and when it turns on it simply prints "PlainGasF1: Up and Running". The WiFi component prints "Wifi: Initialized" and the Humidifier prints "Humidifier: On". Depending on what, if any, add-ons are considered, the start sequence will print different messages. For example, PlainGasF1 with Wifi will print: "Wifi: Initialized"."PlainGasF1: Up and Running". ... when turned on (i.e. method turnOn()). Implement the product family using the decorator pattern, and show that turnOn() behaves accordingly. Submit: 1. The JAVA files relating to your solution. 2. A class diagram showing your solution. Note: Create a folder and name it Assignment2. Inside Assignment2 folder create three folders and name them Ex1, Ex2 and Ex3. Put all the required submission materials of each exercise in its own folder. Finally, zip the Assignment2 folder and submit it on eClass. Good Luck! Assignment 2 Smart Home Controller Exercise 1 (20%) Exercise 2 (50%) Exercise 3 (30%)
Answered 117 days AfterJul 22, 2021

Answer To: Assignment 2 Smart Home Controller In this assignment, you will continue working on the Smart Home...

Neha answered on Nov 16 2021
111 Votes
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here