Python 2.7.13 Coding help with LED
The picture above is my homework, and I need help coding this in Python 2.7.13 only. Help would be appreciated as soon as possible! A picture of your code in Python 2.7.13 would be helpful! Thanks in advance!!
Of course, implementing the or gate is just as easy. In fact, there is no need to change simply switch the and operator with the or operator. The rest of the logic is exactly the same: the circuit! We if (GPIO.input (button1 ) ==GPIO.HIGH OZ Gplo.input (but ton2)-GP10.HIGH): Homework: Blinkt plement a single LED, single switch circuit and write a Python program that does the following (1) The LED should blink continuously such that it is on for 0.5s and off for 0.5s (2) When the switch is pressed (closed), it should change the LED's blink rate so that it is on for 0.1s and off for 0.1s (i.e., it should make the LED blink faster); and 0.5s on and 0.5s off (3) When the switch is released (open), the LED should go back to blinking at the original rate of Submit your Python source file (i.e., the one with a py extension) through the upload facility on the web site. Did you know? hen circuits are continuously toggled (such as when an LED is turned on and off, over and over), we can refer to the portion of time that the circuit is on as a duty cycle. Formally, a duty cyele is the percentage of one period in which a signal is active. A period is the time it takes for a signal to complete an on-and-off cycle. In a simple LED circuit, a duty cycle of 50% means that the LED turns on and off for the same amount of time (e.g., the LED turns on for one second, off for one second, and so on). A duty cycle of 25% means that the LED turns on 25% of the time (e.g., the LED turns on for 0.25s, off r 0.75s, and so on) Of course, implementing the or gate is just as easy. In fact, there is no need to change simply switch the and operator with the or operator. The rest of the logic is exactly the same: the circuit! We if (GPIO.input (button1 ) ==GPIO.HIGH OZ Gplo.input (but ton2)-GP10.HIGH): Homework: Blinkt plement a single LED, single switch circuit and write a Python program that does the following (1) The LED should blink continuously such that it is on for 0.5s and off for 0.5s (2) When the switch is pressed (closed), it should change the LED's blink rate so that it is on for 0.1s and off for 0.1s (i.e., it should make the LED blink faster); and 0.5s on and 0.5s off (3) When the switch is released (open), the LED should go back to blinking at the original rate of Submit your Python source file (i.e., the one with a py extension) through the upload facility on the web site. Did you know? hen circuits are continuously toggled (such as when an LED is turned on and off, over and over), we can refer to the portion of time that the circuit is on as a duty cycle. Formally, a duty cyele is the percentage of one period in which a signal is active. A period is the time it takes for a signal to complete an on-and-off cycle. In a simple LED circuit, a duty cycle of 50% means that the LED turns on and off for the same amount of time (e.g., the LED turns on for one second, off for one second, and so on). A duty cycle of 25% means that the LED turns on 25% of the time (e.g., the LED turns on for 0.25s, off r 0.75s, and so on)