99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫EL1242 、代做Python/Java編程
代寫EL1242、代做Python/Java編程

時間:2025-03-19  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Academic Year: 2024/25
Assessment Introduction: 
Course: 
BEng (Hons) Electronic Engineering    Module Code: EL1242    
Module Title: Digital Electronics    

Title of the Brief: 
Prototyping of A Primary Smart Home System    Type of assessment: Coursework

This Assessment Pack consists of a detailed assignment brief, guidance on what you need to prepare, and information on how class sessions support your ability to complete successfully. You’ll also find information on this page to guide you on how, where, and when to submit. If you need additional support, please make a note of the services detailed in this document. 

How, when, and where to submit:
The deadline for this assessment is 21st  March 2025 at 23.59 via the submission zone found the EL1242 Blackboard area - Please note that this is the final time you can submit – not the time to submit!
If your work is submitted via the Turnitin link on Blackboard, the link will be visible to you on: 12th December 2024 
Feedback will be provided by: 26th April 2025
You should aim to submit your assessment in advance of the deadline.
Note: If you have any valid mitigating circumstances that mean you cannot meet an assessment submission deadline and you wish to request an extension, you will need to apply online, via MyUCLan with your evidence prior to the deadline. Further information on Mitigating Circumstances via this link.
We wish you all success in completing your assessment. Read this guidance carefully, and any questions, please discuss with your Module Leader or module team. 

Additional Support available: 
All links are available through the online Student Hub
1.Academic support for this assessment will be provided by contacting Zengdi Bao or Xinliang Chen 
2.Our Library resources link can be found in the library area of the Student Hub .
3.Support with your academic skills development (academic writing, critical thinking and referencing) is available through WISER on the Study Skills section of the Student Hub.
4.For help with Turnitin, see Blackboard and Turnitin Support on the Student Hub 
5.If you have a disability, specific learning difficulty, long-term health or mental health condition, and not yet advised us, or would like to review your support, Inclusive Support can assist with reasonable adjustments and support. To find out more, you can visit the Inclusive Support page of the Student Hub.
6.For mental health and wellbeing support, please complete our online referral form, or email wellbeing@uclan.ac.uk. You can also call 01772 893020, attend a drop-in, or visit our UCLan Wellbeing Service  Student Hub pages for more information.
7.For any other support query, please contact Student Support via studentsupport@uclan.ac.uk. 
8.For consideration of Academic Integrity, please refer to detailed guidelines in our policy document . All assessed work should be genuinely your own work, and all resources fully cited.  
9.For this assignment, you are not permitted to use any category of AI tools.

Preparing for your assignment.
Ensure that you fully understand the requirements for the assessment and what you are expected to complete. The assignment will be introduced in the lecture session where you can ask any questions, you can also ask for clarification by contacting the module team.

The following module learning outcomes will be assessed in this assignment: 

Explain the operation of a basic microprocessor system, relating the description to the architecture of the processor.
Interpret assembly language software used in the processor based system.

Please read over the guide to writing a technical document https://www.theiet.org/media/5182/technical-report-writing.pdf and ensure that you fully understand the requirements of the assessment. There will be a lecture session on the assignment and writing a technical document. 

Ensure that you research and read into the subject area before writing the report so that you have a good background understanding to the subject area.

Assignment Brief

1.Introduction
In this assessment, the student will demonstrate the ability to:
Explain the operation of a basic microprocessor/microcontroller system, and interpret software used in such a system.
Write and test simple programs using a modern programming language and an appropriate set of development tools or environment, including use of libraries, debug tools etc.
Develop digital systems and programs for basic engineering applications.
Design hardware and software to meet the specification for a simple processor-based system.
2.Assignment Brief
Smart home devices are a part of the larger concept of home automation. Large smart home systems utilize a main hub or controller to provide users with a central control for all of their devices. These devices can include lighting, heating and air conditioning and security system. The other key application of smart home is to provide assistance for disabled and elderly individuals. For example, they can be equipped with additional safety features which include sensors that monitor for medical emergencies such as falls or seizures. Smart home technology can provide users with more freedom and a higher quality of life.
Your task is to implement a primary smart home system which can automatically control the heating and lighting system, detect people’s falls, and provide readings of environmental parameters, e.g. temperature, ambient light levels.
You will use the Nucleo STM32L476RG ARM board and specially made sensor board, an application shield, shown in Figure 1.
 
Figure 1. Nucleo STM32L476RG ARM board and the specially made sensor board.


3.Requirements
Specific requirements of the systems are as follows:
Task 1: Automatic heating control. This is about a design of a thermostat. The state of the thermostat controller is represented by a servo. When the temperature is greater than or equal to 25oC, the servo should be at a position of 0o degree, which means the controller is ‘off’. When the temperature is below 25oC, the
servo should be at a position of 135o degree, which means the thermostat controller is ‘on’.
Task 2: Automatic lighting control. Use the four red leds as lighting devices. There are five required levels of lighting, 1, 2, 3, 4 and off. The lighting level is controlled by the lightness/darkness detected by the LDR sensor, for example when it is very light, all the leds will be off, and when it is very dark all the four leds will be on. All the 5 levels of lighting will be corresponded to the evenly distributed ‘ReadIn’ value from the LDR.
Task 3: Detecting falls. Use the 3 axis (X, Y, Z) accelerometer to detect fall and the three-colour led to represent an alarm. Assume that when people fall, the value of acceleration is greater than 1.8g or less than-1.8g in any direction of X, Y and Z. When a fall happens, light up the three-colour leds in turn and each colour duration time is 0.2s.
Task 4: Environmental parameter readings. Use the blue User Button and switches to control the content of readings. When the blue user button is pressed, and the switch position is ‘0001’, display the temperature on the PC screen through the on board serial port. When the blue user button is pressed, and the switch position is ‘0010’, display the relative ambient light levels with row of ‘*’ on the PC screen (length determined by brightness). When the blue user button is pressed, and the switch position is ‘0100’, display the values of acceleration of 3 directions on the PC screen. When the blue user button is pressed, and the switch position is ‘1000’, display the output voltage value from the potentiometer. When the switch value is others, display a message of ‘invalid switch value’ on the PC screen. The summary of readings is as Table 1 below,

State of Blue User Button    Value of Switch    Content to Display on PC
Pressed    0001    Temperature ( oC )
Pressed    0010    Ambient light levels as a pattern of number of ‘*’
Pressed    0100    Values of acceleration of 3 directions
Pressed    1000    Output voltage value from the potentiometer
Pressed    Other values    ‘Invalid switch value’
Not pressed    Do not care    Keep previous display
Table 1: Summary of environmental parameter readings

4.Details of devices on the specially designed shield.
The details about the pin names, connections of devices are listed in Table 3.

Device    Nucleo/Arduino Pin(s)    
ARM Pins    
Comment
4 LEDs    D10–D13    PB6, PA7, 6, 5    Can output 4 bits, 1 ‘hex’ digit
Nucleo Board ‘LED1’ is D13
4 switches    D6-D9    PB10, PA8, PA9, PC7    Can input 4 bits, one ‘hex’ digit
Push Switch    USER_BUTTON    PC13    Interrupt, Polling

PWM    Any digital output pin, except    D6, ARM PB10
[we use this for input on our system]    Brightness of LEDs, speeds of motors, angular position of
Servos can all be controller with PWM

Multi-coloured LED    D2 = Red D3 = Blue D4 = Green    PA10 PB3 PB5    3 colour LED, allowing (almost) any colour to be produced by addition
Potentiometer    A4    PC1    Adjustable Analogue input
Light dep. Resistor    A5    PC0    Voltage Vin varies inversely with light level
Analogue Accelerometer    A0 = X A1 = Y
A2 = Z    PA0 PA1
PA4    ADX335 3 axis analogue accelerometer
Axes are marked on module
I2C sensor    D14 = SDA D15 = SCL    PB9 PB8    DS1621 temperature sensor
Table 2: Details of devices on the specially designed shield.
5.Development Report
Part of your submission is a technical report about the development of the monitoring devices. Within the report ensure that you cover the following aspects:

Researched background into microcontollers.
Researched background into sensors, actuators and other components used in the tasks required.
Details of design analysis for all the tasks.
Individual testing on implemented tasks.
Appropriate images and references of the development.
Conclusions.

Word limit: A maximum of 1000 words (see notes below for further information).

Technical Report Writing

To complete the report, you will have to thoroughly research the area using reliable sources and precisely reference where your information and statements are from. The aim of the report is to be clear, concise and convey technical information to the reader, note that the reader is familiar and experienced in the area. Ensure that you write your report for this audience. 

A guide on writing a technical document can be found at the following (this will also be uploaded to blackboard): 

Please read over the above document to ensure that you are clear on what a technical report is and know what you are required to complete, note the above is a guide not an explicit standard you will be required to ensure that your technical report contains the relevant information presented correctly for the reader.

Ensure that you research and read into the subject area before writing the report so that you have a good background understanding to the subject area. You will need to provide a short report, which shows the calculation of each tasks in Marking Criteria and Weighting section below with an appropriate assumption, description and comments, no longer than 1,000 words. You should use the guideline below to structure your report. For the final reporting submission, make sure that each page is marked with the date of completion, the page number, and the total number of pages submitted.  Make sure that the front page of your submission has this information displayed prominently along with the module name and number and assignment title. Your work must be referenced using Harvard Referencing system available here: https://v3.pebblepad.co.uk/v3portfolio/uclan/Asset/View/Gm3mmGk6sM3RgHZnjGfh7mm6pM. 

Further information to support your development will be available to view on assignment briefing session and Blackboard.

Notes on Wordcount and Referencing

For good marks and given the limited wordcount you should produce work that is: accurate; thorough; well-argued; clear; accurately referenced; relevant and written in correct (UK) English grammar and spelling. You may include figures and tables with short captions (25 words each) and a list of references without affecting the overall word count. Remember that you have limited words so ensure that you “stick to the point” and do not get into detail on superficial elements. 

Ensure that you include references when discussing technical facts and statements on the technology used. You must reference all your sources of information. These should be cited in the appropriate part of the report and fully identified to meet the Harvard referencing standard in a list at the end. Website articles must be properly referenced to be considered as legitimate references.

Presentation of assignment work

Except where specifically stated in the assignment brief, assignment work submissions should be word-processed, in Microsoft Word 2016 format, with a footer comprising: your module code; date; page number. 

The following module learning outcomes will be assessed in this assignment: 

Explain the operation of a basic microprocessor system, relating the description to the architecture of the processor.
Interpret assembly language software used in the processor based system.

Marking Criteria and Weighting

It is recognised that not everyone will be able to meet all of the specifications given overleaf, so the assessment scheme is designed to measure how much of the specification you can meet. You will be required to write a short evaluative report and give a demonstration of your system by taking a 20 second selfie video. All the program with inline comments you made should be included in the report as an appendix (not part of page count). Marks will be awarded as follows in Table 2.

Your submission will be marked in accordance with the following marking scheme:
Item    Possible Mark %
Task 1: Automatic heating control    20
Task 2: Automatic lighting control    20
Task 3: Fall detection    20
Task 4:Environmental parameter readings    20
A 20 second video demonstrating your working system    20
Table 3: Summary of awarded marks.

Appendix : Marking Scheme for Code and Video
    Fail (<40%)    Bearable Pass (40-49%)    Satisfactory (50-69%)    Good (70-79%)    Excellent (≥80%)

Task 1: Automatic heating control (Total 20 marks)    
There are no inline comments included in the code. Program structures are not clear. The code for all the tasks does not function. There is no data analysis of servo angles and temperature sensor. Design method is not explained    
There are almost no inline comments included in the code. Program structures are not clear. The code has some errors. There is no data analysis of servo angles and temperature sensor. Design method is not explained    
The inline comments included in the code is brief. Good program structures.
The code is correct. There is no data analysis of servo angles and temperature sensor. Design method is not explained    
Good inline comments included in the code. Good program structures. The code is correct. The data analysis of servo angles and temperature sensor data are briefl. Design method is explained very well    
Very good and detailed inline comments included in the code. Very good program structures. The code is completely correct. The data analysis of servo angles and temperature sensor data are in detail.
Design method is explained very well


Task 2: Automatic lighting control (Total 20 marks)l    There are no inline comments included in the code. Program structures are not clear. The code for all the tasks does not function. LDR data analysis and design
method are not explained.    
There are almost no inline comments included in the code. Program structures are not clear. The code has some errors. LDR data analysis and design method are not explained.    
The inline comments included in the code is brief. Good program structures.
The code is correct. LDR data analysis and design method are not explained .    
Good inline comments included in the code. Good program structures. The code is correct. LDR data analysis and design method are explained but brief    Very good and detailed inline comments included in the code. Very good program structures. The code is completely correct. LDR data analysis and design method are explained very well.

Task 3: Fall detection (Total 20 marks)    There are no inline comments included in the code. Program structures are not clear. The code for all the tasks does not function. Accelerometer data analysis and design method are not
explained.    There are almost no inline comments included in the code. Program structures are not clear. The code has some errors.
Accelerometer data analysis and design method are not explained..    
The inline comments included in the code is brief. Good program structures.
The code is correct. Accelerometer data analysis and design method are not explained .    
Good inline comments included in the code. Good program structures. The code is correct.
Accelerometer data analysis and design method are explained but brief    Very good and detailed inline comments included in the code. Very good program structures. The code is correct.
Accelerometer data analysis and design method are explained very well.

Task
4 :Environmen tal parameter reading (Total 20 marks)    There are no inline comments included in the code. Program structures are not clear. The code for all the tasks does not function. Design method
is not explained.    There are almost no inline comments included in the code. Program structures are not clear. The code has some errors. Design method is not explained.    
The inline comments included in the code is brief. Good program structures.
The code is correct. Design method is not explained.    Good inline comments included in the code. Good program structures. The code is correct. Design method is explained but brief.    Very good and detailed inline comments included in the code. Very good program structures. The code is correct. Design method is explained very
well.

A 20 second video demonstrating your working system
(Total 20 marks)    No video recording(s) is/are submitted. Or very little attempt on video demonstrating of working tasks. No evidence of any task implementation
is correct.    Video recording(s) is/are far beyond the length limit. No audio explanation included. Most of the tasks are not clearly demonstrated in correct implementations    Video recording(s) is/are slightly beyond the length limit. Short of audio explanation. Not all the tasks are clearly demonstrated in correct
implementations.    Video recording(s) is/are slightly beyond the length limit. Good audio explanation is included. Clearly demonstrate(s) all the tasks in correct
implementations.    
Video recording(s) is/are concise with good audio explanation Clearly demonstrate(s) all the tasks in correct implementations.

Feedback Guidance:
Reflecting on Feedback: how to improve.
From the feedback you receive, you should understand:
The grade you achieved.
The best features of your work.
Areas you may not have fully understood.
Areas you are doing well but could develop your understanding. 
What you can do to improve in the future - feedforward.

Use the WISER: Academic Skills Development service. WISER can review feedback and help you understand your feedback. You can also use the WISER Feedback Glossary
Next Steps:
List the steps have you taken to respond to previous feedback.
Summarise your achievements 
Evaluate where you need to improve here (keep handy for future work):

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機打開當前頁
  • 上一篇:金滿滿全國客服電話-金滿滿24小時人工服務熱線
  • 下一篇:鑫億達全國客服電話-鑫億達24小時人工服務熱線
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                欧美精品日韩综合在线| 91成人看片片| 日韩一区二区三区观看| 亚洲天堂精品在线观看| 国产sm精品调教视频网站| 欧美精选一区二区| 日韩高清不卡一区二区| 欧美亚洲综合一区| 香蕉久久夜色精品国产使用方法| 色吧成人激情小说| 18欧美乱大交hd1984| 在线观看一区二区视频| 五月激情丁香一区二区三区| 亚洲婷婷在线视频| 色综合视频一区二区三区高清| 亚洲品质自拍视频| 在线精品观看国产| 看电视剧不卡顿的网站| 久久亚洲精品小早川怜子| 美女一区二区三区在线观看| 久久久久久久久久久黄色| 国产成人av电影在线| 亚洲国产乱码最新视频| 911精品国产一区二区在线| 丝袜诱惑制服诱惑色一区在线观看| 欧美男人的天堂一二区| 国产精品色婷婷| 91精品国产色综合久久不卡蜜臀| 国产凹凸在线观看一区二区| 午夜精品福利一区二区蜜股av| 亚洲精品一区二区三区在线观看| 91亚洲精品乱码久久久久久蜜桃 | 亚洲综合免费观看高清完整版 | 欧美xxxx在线观看| 成人性视频网站| 日韩精品一级二级 | 4438亚洲最大| 国产成人av自拍| 久久精品一区蜜桃臀影院| 欧美巨大另类极品videosbest | 久久奇米777| 欧美日韩不卡一区二区| 亚洲福利视频导航| 日韩欧美久久久| 亚洲图片有声小说| 久久精品综合网| 久久伊99综合婷婷久久伊| 91久久线看在观草草青青| 国产福利精品一区二区| 激情综合色综合久久综合| 麻豆91小视频| 久久夜色精品国产噜噜av | 亚洲国产色一区| 中文字幕一区二区三区乱码在线 | 成人永久看片免费视频天堂| 美女视频免费一区| 免费看日韩a级影片| 视频一区在线视频| 毛片av一区二区三区| 亚洲欧美在线高清| 亚洲电影欧美电影有声小说| 亚洲午夜在线电影| 日韩高清中文字幕一区| 三级在线观看一区二区| 美腿丝袜亚洲三区| 国产在线视视频有精品| 国产精品综合久久| 99视频超级精品| 一本大道久久a久久精品综合| 国产 日韩 欧美大片| 欧美日本一区二区在线观看| 欧美精品日日鲁夜夜添| 2022国产精品视频| 久久精品一区二区| 欧美激情一区二区三区在线| 国产精品久久久久aaaa| 亚洲综合视频在线| 另类小说欧美激情| 亚洲免费在线观看视频| 亚洲第一福利视频在线| 免播放器亚洲一区| 看片网站欧美日韩| 成人av动漫在线| 欧美另类高清zo欧美| 日韩中文字幕亚洲一区二区va在线| 奇米在线7777在线精品| 国产99久久久久久免费看农村| 91欧美一区二区| 欧美乱妇20p| 99免费精品在线观看| 国产激情一区二区三区| 在线视频欧美精品| 26uuu精品一区二区| 中文字幕精品在线不卡| 日韩成人午夜电影| 亚洲五月六月丁香激情| 美女精品自拍一二三四| 日韩美女主播在线视频一区二区三区| 欧美一区二区三区公司| 国产精品久久毛片| 日本免费新一区视频| 成人黄色网址在线观看| 91精品国产入口在线| 中文字幕成人网| 三级亚洲高清视频| 成人一区在线看| 欧美日韩一区二区三区四区五区| 欧美变态凌虐bdsm| 91视频精品在这里| 中文字幕 久热精品 视频在线| 欧美一区二区三区在线电影| 久久久久国产精品麻豆ai换脸| 亚洲国产精品久久不卡毛片 | 欧美在线free| 国产午夜精品一区二区三区视频 | 成人99免费视频| 91精品国产麻豆国产自产在线| 亚洲精品在线观看视频| 日本欧美一区二区在线观看| 成人深夜在线观看| 欧美日韩中文国产| 亚洲男人都懂的| 成人性生交大合| 欧美精品一区二区三区一线天视频| 亚洲不卡一区二区三区| 视频一区视频二区中文| 在线欧美小视频| 有坂深雪av一区二区精品| 99精品视频在线观看| 国产精品视频一二| 亚洲丰满少妇videoshd| 欧美在线免费视屏| 国产精品水嫩水嫩| 成人毛片在线观看| 国产精品色哟哟网站| 国产精品综合av一区二区国产馆| 日韩精品资源二区在线| 免费久久精品视频| 制服丝袜成人动漫| 男女男精品视频网| 欧美成人精品二区三区99精品| 国精产品一区一区三区mba视频| 日韩一区二区视频| 九九精品视频在线看| 99精品视频在线播放观看| 伊人婷婷欧美激情| 国产精品色哟哟网站| 欧美aⅴ一区二区三区视频| 精品免费日韩av| 国产成人一区在线| 亚洲猫色日本管| 777色狠狠一区二区三区| 午夜精品久久久| 日韩欧美久久久| 高清不卡在线观看av| 亚洲精品视频免费看| 亚洲精品国产成人久久av盗摄 | 亚洲伦在线观看| 色综合久久66| 樱桃视频在线观看一区| 日韩一区二区免费视频| 国产精品丝袜一区| 欧美日本韩国一区二区三区视频| 在线一区二区视频| 91精品福利视频| 色综合久久久久综合99| 99久久久无码国产精品| 成人18视频日本| 99国产欧美久久久精品| 99视频精品在线| 91美女在线视频| 色偷偷久久一区二区三区| 97成人超碰视| 成人在线视频一区二区| 国产成人a级片| 91啪亚洲精品| 欧美日韩视频专区在线播放| 欧美精品久久99| 欧美一卡二卡三卡| 久久亚洲捆绑美女| 国产精品久久夜| 日韩美女啊v在线免费观看| 亚洲欧美日韩国产综合| 亚洲综合在线免费观看| 三级影片在线观看欧美日韩一区二区 | 久久精品免视看| 国产三级欧美三级日产三级99 | 99精品国产99久久久久久白柏| 国产福利一区在线观看| 成人精品在线视频观看| 国产福利电影一区二区三区| 成熟亚洲日本毛茸茸凸凹| 成人午夜视频在线| 懂色av一区二区三区免费看| 国产91精品在线观看| av激情综合网| 日本电影欧美片| 日韩欧美卡一卡二| 国产精品区一区二区三区| ㊣最新国产の精品bt伙计久久|