subject

Can someone provide the full solution for this problem here. i got stacked and could not solve it.

the system components:
- 40 rooms - guard house - speaker system
- high alert indicator - mild alert indicator - in use indicator
functionality:
a) the intercom must have a connection from the gate to each room and from each room to another room. to reduce cable runs and minimize cost, a single cat5 cable runs from the room to a central switch in the building. another cable runs from the switch to the gate.
b) connection is establish by entering the room number into the keypad following by some call button. the room number is translated into a unique binary address embedded in the system.
c) when a room is called the buzzer is sounded and a visual indicator blinks on panel in the room.
d) if the call is accepted and the line is busy, all other terminals will have the in use indicator lit.
e) each alert indicator must have a unique code. these function is only activated by the college manager to all connected device. when alert is high, the buzzer must also ring for 30 seconds.
requirements:
to complete this assignment, the following tasks are required:
1. give the binary address for each room and device (speaker and alerts)
2. provide the digital logic for functions b) to c) listed above to be “on” or “off”.
3. provide the digital circuit for functions b) to c) listed above using and and or gates.
4.using a flow chart give the input conditions discuss the process for the following outputs:
a. room 5 on the intercom with the gate.
b. room 13 on the intercom with room 37
c. the manager activating the high alert.

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 18:20
Write a method replacekey in the minheap class with the following signature: public void replacekey(integer oldkey, integer newkey) the method will replace the first occurrence of oldkey with the newkey, and restore the min-heap property after the change. if the oldkey does not exist in the heap, the method prints an appropriate message and returns without changing the heap. example: suppose our binary heap object (bh) has the following keys: *** 4 6 7 32 19 64 26 99 42 54 28 then the method call: bh.replacekey (oldkey integer(54), newkey integer(2))
Answers: 1
question
Computers and Technology, 22.06.2019 09:00
Howard is designing a chair swing ride. the swing ropes are 5 meters long, and in full swing they tilt in an angle of 29° outside chairs to be 2.75 m above the ground in full swing.
Answers: 1
question
Computers and Technology, 22.06.2019 19:20
1)consider the following code snippet: #ifndef book_h#define book_hconst double max_cost = 1000.0; class book{public: book(); book(double new_cost); void set_cost(double new_cost); double get_cost() const; private: double cost; }; double calculate_terms(book bk); #endifwhich of the following is correct? a)the header file is correct as given.b)the definition of max_cost should be removed since header files should not contain constants.c)the definition of book should be removed since header files should not contain class definitions.d)the body of the calculate_terms function should be added to the header file.
Answers: 1
question
Computers and Technology, 23.06.2019 09:30
Write a function called checkfactor that takes two arrays of positive numbers, firstnumberrow and secondnumberrow. checkfactor checks if the first entry in firstnumberrow is divisible by the first entry in secondnumberrow, and performs the same operation on the next array elements until all entries have been checked. all the numbers are positive and the number of entries in the arrays are the same. the function should return the identified divisible numbers in two row arrays named firstdivisible and seconddivisible.restrictions: branches or loops should not be used. the code must use the internal mod and logical functions.hint: the mod function should be used to determine if two numbers are divisible. ex: for num1 and num2 if mod(num1,num2) is 0, then the two numbers are divisible.this is matlab
Answers: 2
You know the right answer?
Can someone provide the full solution for this problem here. i got stacked and could not solve it.
Questions
question
Mathematics, 09.07.2019 17:30
question
Mathematics, 09.07.2019 17:30
Questions on the website: 13722367