编程实现红绿灯的方法有多种,以下是几种不同编程语言的示例代码:
Python 示例代码
```python
import time
def red_light():
print("Red Light")
time.sleep(5) 红灯持续5秒
def yellow_light():
print("Yellow Light")
time.sleep(2) 黄灯持续2秒
def green_light():
print("Green Light")
time.sleep(5) 绿灯持续5秒
while True:
red_light()
yellow_light()
green_light()
```
这段代码通过循环模拟了红绿灯的交替变换。
C 语言示例代码
```c
include include define RED 0x3F define YELLOW 0x06 define GREEN 0x5B int main() { unsigned char tab[] = {0x3F, 0x06, 0x5B, 0x4F, 0x66, 0x6D, 0x7D, 0x07, 0x7F, 0x6F}; // 共阴数码管0-9 unsigned char Dis_Shiwei; // 定义十位 while (1) { for (int i = 0; i < 10; i++) { printf("%d", tab[i]); usleep(10000); // 10ms } printf("\n"); } return 0; } ``` 这段代码使用共阴数码管显示数字,模拟红绿灯的状态。 使用 GPIOzero 库的 Python 示例代码 ```python from gpiozero import LED from time import sleep red = LED(16) amber = LED(20) green = LED(21) green.on() 绿灯亮起 sleep(1) 绿灯熄灭 red.on() 红灯亮起 sleep(1) 红灯熄灭 amber.on() 黄灯亮起 sleep(1) 黄灯熄灭 ``` 这段代码使用 GPIOzero 库控制三个LED灯,模拟红绿灯的交替变换。 使用外部库的 Python 示例代码 ```python import time light = "red" while True: if light == "red": print("Stop") light = "green" elif light == "green": print("Go") light = "yellow" else: print("Prepare to stop") light = "red" time.sleep(1) 等待1秒钟 ``` 这段代码使用条件语句和循环语句模拟红绿灯的状态转换。 根据你的具体需求和编程环境,可以选择合适的代码示例进行实现。