KIT406 Answer Sheet

KIT406 Answer Sheet

Tutorial 1 :

#define BUZ_PIN  11    // define the pin number of the Buzzer module

#define DO  256      // define the frequency(DO)

#define RE  288      // define the frequency(RE)

#define MI  320      // define the frequency(MI)

#define FA  341      // define the frequency(FA)

#define SO  384      // define the frequency(SO)

#define LA  427      // define the frequency(LA)

#define TI  480      // define the frequency(TI)

void setup() {

// note that no setup is required

}

void loop() {

  tone(BUZ_PIN, DO*2, 100);  // play the “DO” frequency

  delay(1000);  // delay 1 second

  tone(BUZ_PIN, RE*2, 100);  // play the “RE” frequency

  delay(1000);  // delay 1 second

  tone(BUZ_PIN, MI*2, 100);  // play the “MI” frequency

  delay(1000);  // delay 1 second

  tone(BUZ_PIN, FA*2, 100);  // play the “FA” frequency

  delay(1000);  // delay 1 second

  tone(BUZ_PIN, SO*2, 100);  // play the “SO” frequency

  delay(1000);  // delay 1 second

  tone(BUZ_PIN, LA*2, 100);  // play the “LA” frequency

  delay(1000);  // delay 1 second

  tone(BUZ_PIN, TI*2, 100);  // play the “TI” frequency

  delay(1000);  // delay 1 second

  tone(BUZ_PIN, DO*4, 100);  // play the “DO” frequency

  delay(3000);  // delay 3 second

}

Activity:

tone(BUZ_PIN, MI*2, 100);  // play the “MI” frequency

  delay(1000);  // delay 0.5 second

  tone(BUZ_PIN, RE*2, 100);  // play the “RE” frequency

  delay(1000);  // delay 0.5 second

  tone(BUZ_PIN, DO*2, 100);  // play the “DO” frequency

  delay(1000);  // delay 0.5 second

Tutorial 2:

*

    Ultrasonic sensor Pins:

        VCC: +5VDC

        Trig : Trigger (INPUT) – Pin11

        Echo: Echo (OUTPUT) – Pin 12

        GND: GND

 */

int trigPin = 11;    // Trigger

int echoPin = 12;    // Echo

long duration, cm, inches;

void setup() {

  //Serial Port begin

  Serial.begin (9600);

  //Define inputs and outputs

  pinMode(trigPin, OUTPUT);

  pinMode(echoPin, INPUT);

Tutorial 3:

const int ledPin =  13;          

int ledState = LOW;      

unsigned long previousMillis = 0;

const unsigned long gap = 50;

const unsigned long interval = 500;

void setup()

  {

  pinMode(ledPin, OUTPUT);     

  }

void loop()

  {

  unsigned long currentMillis = millis();

  if(currentMillis – previousMillis > gap)

    {

    previousMillis = currentMillis;  

    if (ledState == LOW)

      ledState = HIGH;

    else

      ledState = LOW;

    digitalWrite(ledPin, ledState);

    }

  }

Tutorial 4.

float sum = 0;

int count = 0;

void setup() {

  // setup serial comms

if(

Serial.begin = 57600)

  pinMode(A0, INPUT);

Serial.println(“Bright”);

}else

Serial.println(“Dark”);

void loop() {

  sum += analogRead(A0);

  count++;

  if(count > 100) {

   Serial.println(sum / 100.0);

   count = 0;

   sum = 0;

  }

  delay(100);

}

Tutorial 5.

int NEAR = 0;

int FAR = 1;

int TOOFAR = 2;

loop() {

            if(NEAR == 0) {

            if(delay = 10000) {

                        Serial.println(“10, Warning”);

            }

            }

            else if(FAR == 1) {

            if(delay = 10000) {

                        Serial.println(“20, Warning”);

            }

            }

            else if(TOOFAR == 2) {

            if(delay = 10000) { 

                        Serial.println(“30, Warning”);

            }

            }

}

Tutorial 6.

/* an ultrasonic alarm system using */

//Firstly the connections of ultrasonic Sensor.Connect +5v and GND normally and trigger pin to 12 & echo pin to 13.

#define trigPin 12

#define echoPin 13

int Buzzer = 8; // Connect buzzer pin to 8

int ledPin= 6;  //Connect LEd pin to 6

int duration, distance; //to measure the distance and time taken

void setup() {

        Serial.begin (9600);

        pinMode(trigPin, OUTPUT);

        pinMode(echoPin, INPUT);

        pinMode(Buzzer, OUTPUT);

        pinMode(ledPin, OUTPUT);

}

void loop() {

    digitalWrite(trigPin, HIGH);

    delayMicroseconds(10);

    digitalWrite(trigPin, LOW);

    duration = pulseIn(echoPin, HIGH);

    distance = (duration/2) / 29.1;

    //when distance is greater than or equal to 200 OR less than or equal to 0,the buzzer and LED are off

  if (distance >= 300 || distance <= 900)

        {

        Serial.println(“object detected”);

        digitalWrite(Buzzer,LOW);

        digitalWrite(ledPin,GREEN);

        }

  else if (distance < 300 )

{

        Serial.println(“object detected \n”);

        tone(Buzzer,200);             

        digitalWrite(ledPin,RED);

  }

}

Tutorial 7.

int red_light_pin= 11;

int green_light_pin = 10;

int blue_light_pin = 9;

void setup() {

  pinMode(red_light_pin, OUTPUT);

  pinMode(green_light_pin, OUTPUT);

  pinMode(blue_light_pin, OUTPUT);

}

void loop() {

  RGB_color(255, 0, 0); // Red

  delay(1000);

  RGB_color(0, 255, 0); // Green

  delay(1000);

  RGB_color(0, 0, 255); // Blue

  delay(1000);

  RGB_color(255, 255, 125); // Raspberry

  delay(1000);

  RGB_color(0, 255, 255); // Cyan

  delay(1000);

  RGB_color(255, 0, 255); // Magenta

  delay(1000);

  RGB_color(255, 255, 0); // Yellow

  delay(1000);

  RGB_color(255, 255, 255); // White

  delay(1000);

}

void RGB_color(int red_light_value, int green_light_value, int blue_light_value)

 {

  analogWrite(red_light_pin, red_light_value);

  analogWrite(green_light_pin, green_light_value);

  analogWrite(blue_light_pin, blue_light_value);

}

Tutorial 8 a.

void setup()

{

  pinMode(11, OUTPUT);

  pinMode(10, OUTPUT);

  pinMode(9, OUTPUT);

}

void loop()

{

  analogWrite(11, 128);

  analogWrite(10, 0);

  analogWrite(9, 0);

  delay(3000);

  analogWrite(11, 255);

  analogWrite(10, 255);

  analogWrite(9, 102);

  delay(3000);

}

Tutorial 8 b.

int m_ctrl;

void setup() {

  pinMode(pm1,   OUTPUT);

  pinMode(pm2,   OUTPUT);

}

void loop() {

  m_ctrl = analogRead(joystick);

  m_ctrl >>= 1;

  if(m_ctrl > 255){

    digitalWrite(pm2, 0);

    analogWrite(pm1, (m_ctrl – 256));

  }

  else

    if(m_ctrl < 255){

      digitalWrite(pm1, 0);

      analogWrite(pm2, (255 – m_ctrl));

    }

    else{

      digitalWrite(pm1, 0);

      digitalWrite(pm2, 0);

    }

}

Tutorial 9.

void setup() {

  // Open serial communications and wait for port to open:

  Serial.begin(57600);

  while (!Serial) {

    ; // wait for serial port to connect. Needed for native USB port only

  }

  Serial.print(“Initializing SD card…”);

  if (!SD.begin(53)) { //CS pin is 53

    Serial.println(“initialization failed!”);

    while (1);

  }

  Serial.println(“initialization done.”);

  if(SD.exists(“test.txt”) {

            SD.remove(“test.txt”);

  }

}

void loop() {

if(Serial.available()){

        n = Serial.read();

        Serial.print(“You typed: ” );

        Serial.println(n);

            If(n==0){

                        myFile = SD.open(“test.txt”);

  if (myFile) {

    Serial.println(“test.txt:”);

    // read from the file until there’s nothing else in it:

    while (myFile.available()) {

      Serial.write(myFile.read());

    }

    // close the file:

    myFile.close();

  }

}else if(n==1){

                        Serial.println(“error opening test.txt”);

}else{

            Serial.println(“error opening test.txt”);

}

}

  delay(1000);

}

Tutorial 10 a:

uint_t num = 0xAA;

led.setLED(num);

Tutorial 10 b:

#include “RL_LEDArray.h”

LED led;

uint_t num = 0x01;

void setup()

{

  led.AllOff();

  Serial.begin(57600);

}

void loop()

{

       led.setLED(num);

// This function writes the binary value into the LED Bar directly

       Serial.println(num, BIN);

       num = num << 1;

       if(num == 0) num = 0x01;

       delay(1000);

}

Universal Assignment (September 9, 2025) KIT406 Answer Sheet. Retrieved from https://universalassignment.com/kit406-answer-sheet/.
"KIT406 Answer Sheet." Universal Assignment - September 9, 2025, https://universalassignment.com/kit406-answer-sheet/
Universal Assignment June 26, 2022 KIT406 Answer Sheet., viewed September 9, 2025,<https://universalassignment.com/kit406-answer-sheet/>
Universal Assignment - KIT406 Answer Sheet. [Internet]. [Accessed September 9, 2025]. Available from: https://universalassignment.com/kit406-answer-sheet/
"KIT406 Answer Sheet." Universal Assignment - Accessed September 9, 2025. https://universalassignment.com/kit406-answer-sheet/
"KIT406 Answer Sheet." Universal Assignment [Online]. Available: https://universalassignment.com/kit406-answer-sheet/. [Accessed: September 9, 2025]
Order Now
No Fields Found.
Universal Assignment (September 9, 2025) KIT406 Answer Sheet. Retrieved from https://universalassignment.com/kit406-answer-sheet/.
"KIT406 Answer Sheet." Universal Assignment - September 9, 2025, https://universalassignment.com/kit406-answer-sheet/
Universal Assignment June 26, 2022 KIT406 Answer Sheet., viewed September 9, 2025,<https://universalassignment.com/kit406-answer-sheet/>
Universal Assignment - KIT406 Answer Sheet. [Internet]. [Accessed September 9, 2025]. Available from: https://universalassignment.com/kit406-answer-sheet/
"KIT406 Answer Sheet." Universal Assignment - Accessed September 9, 2025. https://universalassignment.com/kit406-answer-sheet/
"KIT406 Answer Sheet." Universal Assignment [Online]. Available: https://universalassignment.com/kit406-answer-sheet/. [Accessed: September 9, 2025]

Please note along with our service, we will provide you with the following deliverables:

Please do not hesitate to put forward any queries regarding the service provision.

We look forward to having you on board with us.

Most Frequent Questions & Answers

Universal Assignment Services is the best place to get help in your all kind of assignment help. We have 172+ experts available, who can help you to get HD+ grades. We also provide Free Plag report, Free Revisions,Best Price in the industry guaranteed.

We provide all kinds of assignmednt help, Report writing, Essay Writing, Dissertations, Thesis writing, Research Proposal, Research Report, Home work help, Question Answers help, Case studies, mathematical and Statistical tasks, Website development, Android application, Resume/CV writing, SOP(Statement of Purpose) Writing, Blog/Article, Poster making and so on.

We are available round the clock, 24X7, 365 days. You can appach us to our Whatsapp number +1 (613)778 8542 or email to info@universalassignment.com . We provide Free revision policy, if you need and revisions to be done on the task, we will do the same for you as soon as possible.

We provide services mainly to all major institutes and Universities in Australia, Canada, China, Malaysia, India, South Africa, New Zealand, Singapore, the United Arab Emirates, the United Kingdom, and the United States.

We provide lucrative discounts from 28% to 70% as per the wordcount, Technicality, Deadline and the number of your previous assignments done with us.

After your assignment request our team will check and update you the best suitable service for you alongwith the charges for the task. After confirmation and payment team will start the work and provide the task as per the deadline.

Yes, we will provide Plagirism free task and a free turnitin report along with the task without any extra cost.

No, if the main requirement is same, you don’t have to pay any additional amount. But it there is a additional requirement, then you have to pay the balance amount in order to get the revised solution.

The Fees are as minimum as $10 per page(1 page=250 words) and in case of a big task, we provide huge discounts.

We accept all the major Credit and Debit Cards for the payment. We do accept Paypal also.

Popular Assignments

Principles of Economics

Principles of Economics Short-answer Assignment V1 (20% of final mark) The assignment consists of four questions.  You should allocate at least half a page (or 250 words) to each answer or 1000 words for all four answers depending on the nature of and/or marks allocated for the question/s. You may

Read More »

MRTY 5134 Laboratory Report Assignment

MRTY 5134 Laboratory Report Assignment Semester 1 2025Due 18th May 2025Answer TemplateEnter your name and student number below.Name:SID:Use this document to record your answers to the tasks described in the laboratoryreport assignment. When completed submit this document for marking via theassignment portal in Canvas.Things to note:

Read More »

Mind Map – Personal Philosophy

Mind Map – Personal Philosophy Assessment 2  Assessment Overview Overview Length or Duration Worth Due Part A – Annotated mind-map (equivalent to 350 words). Part B – 350 word personal reflection about your history, identity and values and link it with concepts explored in the unit. Part A – 350 words equivalent

Read More »

Consumer Partnerships in OT Practice

ASSESSMENT NUMBER 3 ASSESSMENT TYPE Written assignment DATE FOR SUBMISSION Refer to the Course Profile WEIGHTING 40% LENGTH   Part A – 500 words Part B – 500 words Part C – 500 words Notes This word allocation includes in-text references but excludes the reference list.There is no allowance for

Read More »

HPSYSD101 The Evolution of Psychology

ASSESSMENT 2 BRIEFSubject Code and Title HPSYSD101 The Evolution of Psychology Assessment Task Annotated BibliographyIndividual/Group IndividualLength 2,000 words (+/- 10%)Learning Outcomes The Subject Learning Outcomes demonstrated by successfulcompletion of the task below include:b) Examine the significant figures, events and ideas present inthe history of psychology.c) Identify and relate the key

Read More »

Literature Review and Reflection on Counselling in Education

Assessment Task SheetEDU6114 – Assessment 1 – Literature Review and Reflection Course Code and Name EDU6114 – Counselling in EducationAssessment Name Literature Review and Reflective EssayAssessment Item 1 Assessment Type EssayMarks/Weighting 50% Length 2500 words (excluding references)Assessed LearningOutcomesCLO 1, 3, 7 Due Date Please check Study Desk for Due DatesRationale

Read More »

NUTR1023 Health and Fitness through Diet and Exercise

Subject NUTR1023 Health and Fitness through Diet and Exercise Assessment Personal Diet and Exercise Plan Learning Objectives Apply the principles of training to develop a personal exercise program with appropriate mode/intensity/frequency to develop the students’ own health and fitness.Apply the current dietary guidelines to develop a personal diet plan for

Read More »

Behaviour Support Plan & Reflection

Overview Submit your support plan and reflective piece as one document. Description Part A: Support plan (1750 words) For a case study develop a support plan. This plan should aim to support an individual to reduce the need for a behaviour that challenges to occur. Collect and analyse data on a behaviour

Read More »

ASSESSMENT 2: Child Study Report

ASSESSMENT 2: Child Study Report Moderater very strict on  Rubric, its her bible, so please look into it Assignment – Written Assignment Due Date: 28th May, 23:59 (AEST) Weight: 60% Description (2500-3000 words): In this task, you are required to apply your knowledge of observational methods and child development to write

Read More »

Arts Assignment Help Australia

Introduction Arts is a broad and creative discipline that encompasses visual arts, performing arts, music, design, literature, and creative writing. Studying arts helps students explore creativity, cultural heritage, and expression through multiple mediums. In Australia, arts courses are offered at universities and TAFE institutes such as University of Melbourne, Monash

Read More »

Health Sciences Assignment Help Australia

Introduction Health Sciences is a multidisciplinary field that studies human health, disease prevention, treatment, and healthcare management. It encompasses areas such as nursing, public health, anatomy, physiology, medical research, and healthcare administration. In Australia, health sciences is a highly sought-after discipline offered at universities including Monash University, University of Melbourne,

Read More »

Literature Assignment Help Australia

Introduction Literature is the study of written works, encompassing poetry, prose, drama, fiction, and non-fiction, with a focus on understanding themes, symbolism, and cultural context. It is an essential discipline for students studying English, humanities, or creative writing at universities like University of Melbourne, Monash University, University of Sydney, and

Read More »

Humanities Assignment Help Australia

Introduction Humanities is the study of human culture, society, and history, encompassing disciplines such as history, philosophy, literature, sociology, linguistics, and cultural studies. It plays a crucial role in understanding human behaviour, values, and creativity. In Australia, humanities courses are offered at leading universities including University of Melbourne, Monash University,

Read More »

Environmental Science Assignment Help Australia

Introduction Environmental Science is an interdisciplinary field that studies the relationship between humans and the natural environment. It covers topics such as ecology, climate change, sustainability, pollution control, and environmental management. In Australia, environmental science is a popular field of study due to the country’s rich biodiversity and focus on

Read More »

Biology Assignment Help Australia

Introduction Biology is the science of life, exploring everything from molecular structures to ecosystems. It is a core subject in disciplines such as medicine, nursing, biotechnology, environmental science, and genetics. Students in Australia pursuing biology at universities like Monash University, University of Melbourne, University of Sydney, and Deakin University often

Read More »

Education Assignment Help Australia

Introduction Education is one of the most impactful fields of study, focusing on teaching methods, pedagogy, curriculum development, and learning strategies. Students pursuing education degrees in Australia at institutions such as the University of Melbourne, Monash University, University of Sydney, and Deakin University aim to become skilled teachers, administrators, and

Read More »

Economics Assignment Help Australia

Introduction Economics is the study of how societies allocate scarce resources, focusing on production, consumption, and decision-making. As one of the most popular academic fields in Australia, economics is taught at leading universities including the University of Melbourne, Monash University, University of Sydney, and ANU. Students pursuing economics often face

Read More »

Psychology Assignment Help Australia

Introduction Psychology is the scientific study of the human mind and behaviour, covering areas like cognition, emotions, mental health, and social interactions. In Australia, psychology is one of the most popular disciplines, with thousands of students enrolling at universities such as the University of Melbourne, Monash University, University of Sydney,

Read More »

Marketing Assignment Help Australia

Introduction Marketing is a dynamic and ever-evolving discipline that plays a critical role in the success of any business. From branding and market research to digital campaigns and consumer psychology, marketing requires both creativity and analytical thinking. In Australia, marketing students studying at top institutions like the University of Melbourne,

Read More »

Finance Assignment Help Australia

Introduction Finance is one of the most essential fields of study, forming the backbone of global business, economics, and investment. In Australia, students pursuing degrees in finance, accounting, economics, and business management at top institutions such as Monash University, University of Melbourne, University of Sydney, and RMIT face an intense

Read More »

Computer Science Assignment Help

Introduction Computer Science is one of the fastest-growing and most demanding academic disciplines worldwide. Students in Australia, the UK, and beyond pursue computer science degrees to build careers in software engineering, artificial intelligence (AI), cybersecurity, data science, and web development. However, the field is highly technical and requires extensive practical

Read More »

Law Assignment Help Australia

Introduction Law is one of the most intellectually challenging and competitive fields of study in Australia. Students pursuing law degrees at prestigious institutions such as Monash University, University of Melbourne, University of Sydney, and Australian National University face an intense academic workload. From legal case studies and essays to research

Read More »

Nursing Assignment Help Australia

Introduction Nursing is one of the most respected and challenging professions in Australia. Students pursuing nursing courses at top institutions such as Deakin University, Monash University, University of Melbourne, University of Sydney, and TAFE colleges face a demanding academic workload. From care plans and reflective essays to case studies and

Read More »

Assignment Help in Engineering

Introduction Engineering is one of the most sought-after academic fields in Australia, the UK, and globally. From mechanical and civil engineering to electrical, computer science, and chemical engineering, students face an intense workload filled with assignments, projects, lab reports, and case studies. While exciting, engineering studies demand a strong balance

Read More »

Assignment Help in Management

Introduction Management is one of the most popular fields of study in Australia, the UK, and worldwide. Students pursue management courses in areas such as marketing, human resources (HR), finance, international business, supply chain, and strategic management. While exciting, management studies come with an overwhelming workload—essays, case studies, group projects,

Read More »

Affordable Assignment Help Australia

Introduction Studying in Australia is an exciting journey filled with opportunities, but it also comes with academic challenges. From Melbourne to Sydney, Brisbane, Perth, and Adelaide, students are expected to complete essays, case studies, research papers, and group projects while balancing part-time jobs, internships, and social responsibilities. Many students often

Read More »

Assignment Help UK vs Australia

Introduction The demand for professional academic writing services has grown rapidly among university students worldwide. Two of the most popular destinations where students seek support are the United Kingdom (UK) and Australia. Both countries have globally recognised universities and attract thousands of international students each year. However, when it comes

Read More »

Assignment Writing Service Australia

Introduction Australia is home to world-class universities like the University of Melbourne, Monash University, RMIT University, University of Sydney, and University of Queensland. Every year, thousands of local and international students enrol to pursue higher education in business, nursing, law, IT, engineering, and social sciences. While university life is exciting,

Read More »

Make My Assignment Australia

Introduction University life in Australia is rewarding, but it’s also filled with academic challenges. From Melbourne to Sydney, Brisbane, Perth, and Adelaide, students juggle multiple essays, research papers, case studies, and group projects—all while balancing part-time jobs, internships, and personal responsibilities. For many, the stress becomes overwhelming, and that’s when

Read More »

Do My Assignment for Me Australia

Introduction University life in Australia is full of opportunities but also comes with intense academic pressure. Students are expected to complete essays, case studies, reports, research papers, and group projects on tight deadlines—all while managing part-time jobs, internships, and personal commitments. For many, the workload becomes overwhelming, and the question

Read More »

Can't Find Your Assignment?