[修改] 编码优化

This commit is contained in:
2023-07-01 22:37:35 +08:00
parent b656f348f8
commit 3919b9a91a
3 changed files with 28 additions and 17 deletions

View File

@ -5,7 +5,7 @@ import RPi.GPIO as GPIO
import time
class LED(object):
"""class for SSD1306 128*64 0.96inch OLED displays."""
"""class for LED."""
def __init__(self, led):
LED = led
@ -25,3 +25,11 @@ class LED(object):
GPIO.output(LED,GPIO.HIGH)
GPIO.cleanup()
LED_GPIO_RED = 26
def main():
# 128x64 display with hardware SPI:
led = LED.LED(LED_GPIO_RED)
if __name__=='__main__':
main()

View File

@ -1,9 +1,17 @@
#!/usr/bin/python
# -*- coding:utf-8 -*-
import spidev as SPI
import SSD1306
import time
from PIL import Image,ImageDraw,ImageFont
# Raspberry Pi pin configuration:
OLED_GPIO_RST = 19
OLED_GPIO_DC = 16
OLED_SPI_BUS = 0
OLED_SPI_CS = 0
# Raspberry Pi pin configuration:
GPIO_RST = 19
GPIO_DC = 16

17
main.py
View File

@ -1,31 +1,28 @@
#!/usr/bin/python
# -*- coding:utf-8 -*-
import os
import sys
import time
import RPi.GPIO as GPIO
import spidev as SPI
sys.path.append(os.path.join(os.path.dirname(__file__),'Led'))
sys.path.append(os.path.join(os.path.dirname(__file__),'Oled'))
import Pioneer600.Led.LED as LED
import Pioneer600.Oled.SSD1306 as SSD1306
from PIL import Image,ImageDraw,ImageFont
# Raspberry Pi pin configuration:
LED_GPIO_RED = 26
OLED_GPIO_RST = 19
OLED_GPIO_DC = 16
OLED_SPI_BUS = 0
OLED_SPI_CS = 0
LED_GPIO_RED = 26
# 128x64 display with hardware SPI:
disp = SSD1306.SSD1306(OLED_GPIO_RST, OLED_GPIO_DC, SPI.SpiDev(OLED_SPI_BUS, OLED_SPI_CS))
def main():
# 128x64 display with hardware SPI:
led = LED.LED(LED_GPIO_RED)
def main():
try:
while True:
time.sleep(1)
@ -34,5 +31,3 @@ def main():
if __name__=='__main__':
main()