Programmable Logic Controllers
5th Edition
ISBN: 9780073373843
Author: Frank D. Petruzella
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
Chapter 10, Problem 3P
Program Plan Intro
Timer:
- Timer is special type of clock used to measure some specific time intervals.
- Three types of timer
- Delay-OFF Timer
- Delay-OFF timer is activated when it is turned on and does not wait for the entry of input.
- It is used to count downwards from the programmed time.
- The value of timer is cleared when the enabling input is in off state.
- Delay-ON Timer
- Delay-ON timer is activated by its input.
- It is used to count upwards to the programmed time.
- The value of timer is cleared when the enabling input is in off state.
- Delay-ON-Retentive Timer
- Delay-ON-Retentive Timer is activated by the inputs and starts accumulating time.
- It retains the accumulated value even if the rung goes false.
- It can be reset only by RESET command.
- Delay-OFF Timer
Thumbwheel switch:
- Thumbwheel switch is a switch which is used to convert numerical values displayed on disk where the numbers are converted into binary, decimal and hexadecimal values.
- It contains a function called lock which helps to retain the preset value from being modified.
- It can be operated only by a thin object like pen tip.
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
Program a circuit where a yellow LED light will turn on when a button is pressed 4 times and remain on for 4 seconds. Then, a red light will flash at 2 Hz for 8 seconds.
Computer Science
Find the resistor value to create a timer for 100 second using 0.002 F CapacitorMulti Line Text.
Simple Water Level Indicator with Alarm.
The circuit is designed to indicate three levels of water stored in the tank: low but not empty( Green(LED1)), half ( Yellow(LED2))and full but not overflowing(buzerr).
This circuit is designed using NE555Timer .
Chapter 10 Solutions
Programmable Logic Controllers
Ch. 10 - In general, what do data manipulation instructions...Ch. 10 - Prob. 2RQCh. 10 - Prob. 3RQCh. 10 - Prob. 4RQCh. 10 - Prob. 5RQCh. 10 - Prob. 6RQCh. 10 - Prob. 7RQCh. 10 - Prob. 8RQCh. 10 - Prob. 9RQCh. 10 - Prob. 10RQ
Ch. 10 - Prob. 11RQCh. 10 - Prob. 12RQCh. 10 - Prob. 13RQCh. 10 - Prob. 14RQCh. 10 - Prob. 15RQCh. 10 - Prob. 16RQCh. 10 - Prob. 17RQCh. 10 - Prob. 18RQCh. 10 - Prob. 19RQCh. 10 - Prob. 20RQCh. 10 - Prob. 21RQCh. 10 - Prob. 22RQCh. 10 - Prob. 1PCh. 10 - Prob. 2PCh. 10 - Prob. 3PCh. 10 - Prob. 4PCh. 10 - Prob. 7PCh. 10 - Prob. 8PCh. 10 - Prob. 9PCh. 10 - Prob. 10PCh. 10 - Write a program that will cause a light to come on...Ch. 10 - Write a program that will cause a light to come on...
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- Write python code for a "Count down clock and timer" Explain how the code worksarrow_forwardArduino Ino codearrow_forwardThe lights in a classroom are controlled by two switches: one at the back and one at the front of the room. Moving either switch to the opposite position turns the lights off if they are on and on if they are off. Assume the lights have been installed so that when both switches are in the down position, the lights are off. Design a circuit to control the switchesarrow_forward
- A variable timer uses a counter. True Falsearrow_forwardPurpose: The entry/Exit of the parking lot is a single lane passage. By controlling the indicators, the program ensures that only one car can pass through the Entry/Exit so as to prevent car accident between entering and leaving cars. Y1 X1 Program Description: In the parking lot, there are two light indicators individually directing the entering and leaving cars. By the interlock control circuit, only one indicator will show "GO" signal and the car accident will thus be prevented. When an the same time, the leaving car indicator will show "STOP". Car entering is allowed but leaving is prohibited in this case. When a leaving car draws near the vehicle control barrier, X1 will be ON and so will Y1. The leaving car indicator will show "GO" and the entering car indicator will show "STOP"| draws near the vehicle control barrier, XO will be ON and so will YO. The entering car indicator will show "GO". At TOP GOarrow_forwardThe half control rectifier is O Contains only diodes O Contains only thyristors O Contains mixture of diodes and thyristorsarrow_forward
- Please design a circuit that has a red led and a blue led and simulates a police light (i.e: The red led turns on and off periodically and it gives light when the blue one doesn't, then it turns off when the blue one turns on.)arrow_forward2-write an Arduino program to turn ON three LED(s) where the first LED works when press the first key, the second LED works when you press a key second and third works when you press the third key.The push buttons are connected on the A0,A1 and A4 respectively.arrow_forward* In the figure attached, the output voltage (Vout) will not equal to zero when the :switch is t = 0 R www VS Vout Closed at Zero Opened at zero Open Closedarrow_forward
- Write an 8051 asm program to design a voltage level indicator system using potentiometer and LEDS. The system must display the different level of the voltage with the help of 5 LEDS as per following conditions. a) If the voltage is between 0 to 1V glow LED1 b) If the voltage is between 1 to 2V glow LED1 and LED2 c) If the voltage is between 2 to 3V glow LED1 to LED3 d) If the voltage is between 3 to 4V glow LED1 to LED4 e) If the voltage is between 4 to 5V glow LED1 to LED5arrow_forwardAnswer the given question with a proper explanation and step-by-step solution. Programming the Pico micropython Write a code with helper functions that makes 4 sounds with 250 Hz, 500 Hz, 750 Hz, and 1000 Hz of PWM frequency by the Cytron board’s Buzzer (connected to GP18), respectively, every 1 sec (each sound lasts 0.25 sec) if you press and hold GP20 button. Also, the code should play the same 4 notes in a reverse sequence from highest to lowest frequencies every 1 sec (each sound lasts 0.25 sec) when the GP22 button is pressed. In addition to that, your code should turn on the LED of GP2 while making 250 Hz sound, the LED of GP3 while making 500 Hz sound, the LED of GP4 while making 750 Hz sound, and the LED of GP5 while making 1000 Hz sound. Moreover, nothing should happen if you press both GP20 and GP22 buttons at the same time. You SHOULD define helper functions to be called for making each sound and turning its corresponding LED on. You may need another function to be defined…arrow_forwardDesign a circuit that will count the number of times a button has been pressed. The circuit should use a JK flip flop to store the count, and it should be able to count up to 15 before resetting back to 0. The circuit should have two buttons: one to increment the count, and one to reset the count back to 0. Draw a circuit diagram and provide a step-by-step explanation of how the circuit works.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education