1. Homepage
  2. Programming
  3. CT047 Systems Programming and Computer Control - Assignment - Smart Home Controller

CT047 Systems Programming and Computer Control - Assignment - Smart Home Controller

Engage in a Conversation
APIITCT047Systems Programming and Computer ControlSPCCLabViewSmart Home Control SystemSmart Home Controller

  CourseNana.COM

Assignment CourseNana.COM

: CourseNana.COM

Systems Programming and Computer Control CourseNana.COM

Subject Code CourseNana.COM

: CourseNana.COM

CT047-3.5-2-SPCC CourseNana.COM

Date Assigned CourseNana.COM

: CourseNana.COM

Week 7 CourseNana.COM

Date Due CourseNana.COM

: CourseNana.COM

Week 14 CourseNana.COM

A company has received a contract to design a controller for a Smart Home. A Smart Home is a home fitted with controllers and sensors which permit remote control and automation. The specifications and rules are listed below. Your job is to design a controller using LabVIEW that satisfies all specifications. CourseNana.COM

Instructions: CourseNana.COM

  • Document your assumptions either in your Document or on the LabVIEW block diagram.
  • The assignment requires you to develop a LabVIEW application based on a set of specifications.
  • A computer with a standard installation of LabVIEW is the only reference allowed for the assignment. Externally developed code and third party tools are not allowed in the assignment.
  • You are to submit your finished application online (Moodle).
  • Total time allocated for the assignment is 7weeks

Grading: CourseNana.COM

The application development assignment consists of a total of 50 points (100%) which are allocated as follows: CourseNana.COM

Criteria CourseNana.COM

Points CourseNana.COM

Percentage % CourseNana.COM

Programming style CourseNana.COM

15 CourseNana.COM

30 CourseNana.COM

Functionality CourseNana.COM

15 CourseNana.COM

30 CourseNana.COM

User Interface Design CourseNana.COM

5 CourseNana.COM

10 CourseNana.COM

Conformity to design standards CourseNana.COM

5 CourseNana.COM

10 CourseNana.COM

Documentation CourseNana.COM

10 CourseNana.COM

20 CourseNana.COM

A presentation will follow to allow students to showcase the full functionality of their application. The goal of this presentation is to ascertain that the application submitted is the intellectual product of the student. CourseNana.COM

  CourseNana.COM

The entire assignment contributes 60% to the module total. CourseNana.COM

  CourseNana.COM

IMPORTANT: CourseNana.COM

  • When you have completed the Assignment, submit the assignment document as a PDF Document, and the S/W (along with any other resource) as a Zip file
  • Submit the files on Moodle.

Application Development CourseNana.COM

Section I: General Requirements CourseNana.COM

The application should: CourseNana.COM

  • Function as specified in Section II of this document.
  • Conform to LabVIEW coding style and documentation standards (found in

LabVIEW documentation – LabVIEW Development Guidelines). CourseNana.COM

  • Be created using VIs and functions available in LabVIEW (templates, examples, or code developed outside the core functions of LabVIEW are not acceptable).
  • Be hierarchical in nature. All major functions should be performed in sub VIs.
  • Use a state machine that either uses a type defined enumerated control, queue, or

Event structure for state management. CourseNana.COM

  • Be easily scalable to add more states / features without having to manually update

the hierarchy. CourseNana.COM

  • Minimize the use of excessive structures, variables (local / global) and Property

Nodes. CourseNana.COM

  • Respond to front panel controls (within 100ms) and not utilize 100% of CPU

time. CourseNana.COM

  • Close all opened references and handles where used.
  • Be well documented and include the following:

§  Labels on appropriate wires within the main VI and sub VIs. CourseNana.COM

§  Descriptions for each algorithm. CourseNana.COM

§  Documentation in VI Properties » Documentation for both main VI and sub VIs. CourseNana.COM

§  Tip strip (tool tip) and Description for front panel controls and indicators. CourseNana.COM

§  Labels for constants. CourseNana.COM

  CourseNana.COM


Section II: Application Requirements Security System CourseNana.COM

Instructions: CourseNana.COM

  CourseNana.COM

You have been contracted to build a smart home control system for a new housing developer. This smart home system is part of the package for the homeowners. CourseNana.COM

The developer has provided you with the floor plan of the designs, which are illustrated in Appendix A of this handout. CourseNana.COM

The system is expected to control the various devices in the house, through TCP/IP connections. CourseNana.COM

The system is required to have a central control keypad (usually located in the master bedroom and the main entrance to level 0) that will allow the user to key in the master PIN number to gain access to the control system. CourseNana.COM

Your system is required to interface with a table or database/file to store and retrieve the details of authorised people of the system. CourseNana.COM

The various devices that are controlled by your system are many, and must include (at minimum) the following: CourseNana.COM

  CourseNana.COM

1.              User Management CourseNana.COM

2.              Curtains (open/close) CourseNana.COM

3.              Lights (on/off) CourseNana.COM

4.              Doors (open/close) CourseNana.COM

5.              Airconditioning (Fans and ACs) CourseNana.COM

  CourseNana.COM

All devices in the house are equipped with motors/sensors that allow them to be controlled through a network (TCP/IP). CourseNana.COM

  CourseNana.COM

You are expected to demonstrate creativity in developing the application using a LabView prototype that can deal with the requirements of the developer as well as addressing (if necessary) any other aspects of control of the devices in the house. CourseNana.COM

  CourseNana.COM

  CourseNana.COM

  CourseNana.COM


Project Requirements CourseNana.COM

  CourseNana.COM

1.              You are expected to produce with LabView, a prototype of the control system to be installed in the house. This prototype is required to have an appropriately designed front panel that can provide the user with a clear picture of what the system does. CourseNana.COM

2.              Since this is a prototype, you are not expected to include hardware sensors/motors. You are to simulate the system by having appropriate “software sensors” included in your constructed prototype. However, some research is expected in your documentation that identifies the appropriate type of sensors that can work with the system. The prototype must be designed with this in mind so that actual physical implementation in the future will be easy (prototype modifications must be minimal to accommodate these sensors). CourseNana.COM

3.              As the targeted system is to be built in a networked environment, your system must be designed in two separate modules. The first module will be the main control unit, which will simulate the control keypad, device status (for example, through simple onscreen LEDs) and functions that the system can perform. The second module (a separate LabView) must be created to run on another PC and is to contain the diagrammatic illustration of all device status. CourseNana.COM

4.              Since two modules are to be constructed, a high-level protocol must be built to allow the main module to “interface” (or communicate) with the second module over TCP/IP. Due to the use of TCP/IP, sockets programming is required. CourseNana.COM

5.              You are to work on the prototype individually. CourseNana.COM

6.              You are permitted to make assumptions where necessary. These assumptions are expected to be logical and must be appropriate for the situation at hand. CourseNana.COM

7.              A presentation is required to demonstrate your intellectual property. You are expected to demonstrate how your system can address the requirements of the developer (see “Video Presentation Outline” for reference). CourseNana.COM

8.              The submission of your project should entail the following items: CourseNana.COM

a.              Documentation highlighting the following: CourseNana.COM

i.               How the requirements have been addressed. CourseNana.COM

ii.             System Design. CourseNana.COM

iii.            Protocol Design (for the high-level communication protocol between main module and second module). CourseNana.COM

iv.            What hardware sensors/devices can be implemented and how your prototype has been built to accommodate an easy transition from software-based inputs/outputs to hardware-based inputs/outputs. CourseNana.COM

b.              A user guide that can explain how your system works. This will be based on your system application. CourseNana.COM

c.              The application prototype. CourseNana.COM

  CourseNana.COM


  CourseNana.COM

Appendix A – Floor Plan CourseNana.COM

  CourseNana.COM

CourseNana.COM


Individual Assignment (100%) CourseNana.COM

  CourseNana.COM

Marking Criteria CourseNana.COM

The assignment will contribute 60% towards the entire grade of the Module, as mentioned in the Module Descriptor. CourseNana.COM

  CourseNana.COM

Distinction CourseNana.COM

Demonstrated comprehensive research with detailed evidence. High level of analysis performed, exceptional and thorough knowledge and understanding displayed with regard to application. This includes analysis and evaluation of facts followed by results of evaluation. Documentation presented in a professional manner, following proper sequencing and flow. Displayed evidence of critical appraisal. High level of listing citation and references. CourseNana.COM

  CourseNana.COM

Credit CourseNana.COM

Adequate research conducted with fair detail of evidence presented. Moderate level of understanding, analysis and knowledge displayed. Some level of relevance included in terms of application. Moderate level of analysis and evaluation of facts followed by results comparison. Good level of documentation presented.  Some level of reflection was evident in the documentation. Moderate level of listing citation and references. CourseNana.COM

  CourseNana.COM

Pass CourseNana.COM

Low level research conducted. Some evidence of research displayed. Basic level of understanding and knowledge analysis displayed. Satisfactory level of documentation. No evaluation and analysis of facts, no results comparison performed Satisfactory or low level of reflection displayed. Low level of listing citation and referencing. CourseNana.COM

 

Get in Touch with Our Experts

WeChat (微信) WeChat (微信)
Whatsapp WhatsApp
APIIT代写,CT047代写,Systems Programming and Computer Control代写,SPCC代写,LabView代写,Smart Home Control System代写,Smart Home Controller代写,APIIT代编,CT047代编,Systems Programming and Computer Control代编,SPCC代编,LabView代编,Smart Home Control System代编,Smart Home Controller代编,APIIT代考,CT047代考,Systems Programming and Computer Control代考,SPCC代考,LabView代考,Smart Home Control System代考,Smart Home Controller代考,APIIThelp,CT047help,Systems Programming and Computer Controlhelp,SPCChelp,LabViewhelp,Smart Home Control Systemhelp,Smart Home Controllerhelp,APIIT作业代写,CT047作业代写,Systems Programming and Computer Control作业代写,SPCC作业代写,LabView作业代写,Smart Home Control System作业代写,Smart Home Controller作业代写,APIIT编程代写,CT047编程代写,Systems Programming and Computer Control编程代写,SPCC编程代写,LabView编程代写,Smart Home Control System编程代写,Smart Home Controller编程代写,APIITprogramming help,CT047programming help,Systems Programming and Computer Controlprogramming help,SPCCprogramming help,LabViewprogramming help,Smart Home Control Systemprogramming help,Smart Home Controllerprogramming help,APIITassignment help,CT047assignment help,Systems Programming and Computer Controlassignment help,SPCCassignment help,LabViewassignment help,Smart Home Control Systemassignment help,Smart Home Controllerassignment help,APIITsolution,CT047solution,Systems Programming and Computer Controlsolution,SPCCsolution,LabViewsolution,Smart Home Control Systemsolution,Smart Home Controllersolution,