yc0526vip 发表于 2023-12-19 16:26:56

micro python 代码续写


@FishC 代码上续写在oled显示时间

import time,ntptime,network
import random
from machine import Pin, SoftI2C
import ssd1306
i2c = SoftI2C(Pin(9), Pin(8))
oled = ssd1306.SSD1306_I2C(128, 64, i2c)

width = 128
height = 64

def wifi_main():
    global inif
    wifi=network.WLAN(network.STA_IF)
    if not wifi.isconnected():
      print('wificoming......')
      wifi.active(True)
      wifi.connect('ZTE_5GCPE_F9FF','12345678')
      while not wifi.isconnected():
            pass
    print('Wifi connection succeeded')
    print('network config:', wifi.ifconfig())
wifi_main()

class Snowflake:
    def __init__(self):
      self.x = random.randint(0, width - 1)
      self.y = random.randint(0, height - 1)
      self.speed = random.randint(1, 3)
      
    def move(self):
      self.y += self.speed
      if self.y > height - 1:
            self.y = 5
            self.x = random.randint(0, width - 1)
            
    def draw(self):
      oled.pixel(self.x, self.y, 1)
class Cloud:
    def __init__(self):
      self.x = random.randint(0, width - 1)
      self.y = 3
      self.speed = random.randint(1, 3)
      self.direction = random.choice([-1, 1])
      
    def move(self):
      self.x += self.speed * self.direction
      
      if self.x < 0:
            self.x = width - 1
      elif self.x >= width:
            self.x = 0
   
    def draw(self):
      oled.text("*-*-*", self.x, self.y)
      oled.text("-*-*-", self.x, self.y+8)
snowflakes = []
clouds = []
for _ in range(50):
    snowflakes.append(Snowflake())
   
for _ in range(5):
    clouds.append(Cloud())
while True:
    oled.fill(0)
   
    for snowflake in snowflakes:
      snowflake.move()
      snowflake.draw()
      
    for cloud in clouds:
      cloud.move()
      cloud.draw()
    a = 0.1
    h = 32
    k = 20
    for x in range(-64, 65):
      y = a * (x - h) ** 2 + k
      oled.pixel(x + 64, int(y), 1)
    oled.show()

FishC 发表于 2023-12-19 16:27:15

要在oled上显示时间,可以使用Python的time库来获取当前时间,然后将其显示到oled上。代码如下:

import time

def display_time():
    current_time = time.localtime()
    hour = str(current_time.tm_hour).zfill(2)
    minute = str(current_time.tm_min).zfill(2)
    second = str(current_time.tm_sec).zfill(2)
   
    oled.fill(0)
    oled.text(hour + ':' + minute + ':' + second, 0, 0)
    oled.show()

while True:
    display_time()
    time.sleep(1)

在代码中,我们先导入了time库。然后创建了一个display_time函数,用于显示当前时间。我们使用time.localtime()函数获取当前时间,并将小时、分钟和秒数转换为字符串,并使用zfill(2)来在不足两位的数字前填充0,确保显示的时间格式正确。接着我们清空oled屏幕,然后在坐标(0, 0)处显示时间,最后调用oled.show()来刷新屏幕显示。

在主循环中,我们不断调用display_time函数,并使用time.sleep(1)来控制每秒刷新一次时间。这样就能实时显示当前时间了。

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。

yc0526vip 发表于 2023-12-19 16:28:10

FishC 发表于 2023-12-19 16:27
要在oled上显示时间,可以使用Python的time库来获取当前时间,然后将其显示到oled上。代码如下:



使用micro python 续写

FishC 发表于 2023-12-19 16:28:27

yc0526vip 发表于 2023-12-19 16:28
使用micro python 续写

抱歉,我之前提供的代码有一些错误。以下是正确的micro python代码来在oled上显示时间:

import time
from machine import Pin, SoftI2C
import ssd1306

i2c = SoftI2C(sda=Pin(4), scl=Pin(5))
oled = ssd1306.SSD1306_I2C(128, 64, i2c)

def display_time():
    current_time = time.localtime()
    hour = str(current_time).zfill(2)
    minute = str(current_time).zfill(2)
    second = str(current_time).zfill(2)
   
    oled.fill(0)
    oled.text(hour + ':' + minute + ':' + second, 0, 0)
    oled.show()

while True:
    display_time()
    time.sleep(1)

在这个例子中,我们使用了SoftI2C库和ssd1306库来控制oled屏幕。首先,我们创建一个i2c对象和一个oled对象,定义了屏幕的宽度和高度。然后,在display_time函数中,我们获取当前时间,并把小时、分钟和秒数转换成字符串。我们使用fill函数清空屏幕,使用text函数在坐标(0, 0)处显示时间,并使用show函数刷新屏幕。在主循环中,我们不断调用display_time函数,并使用time.sleep(1)来控制每秒刷新一次时间。这样就可以实时在oled屏幕上显示时间了。

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。

yc0526vip 发表于 2023-12-19 17:44:03

FishC 发表于 2023-12-19 16:28
抱歉,我之前提供的代码有一些错误。以下是正确的micro python代码来在oled上显示时间:



使用网络北京时间

FishC 发表于 2023-12-19 17:44:25

yc0526vip 发表于 2023-12-19 17:44
使用网络北京时间

要使用网络获取北京时间,可以使用MicroPython的ntptime库。以下是修改后的代码:import timefrom machine import Pin, SoftI2Cimport ssd1306import networkimport ntptimei2c = SoftI2C(sda=Pin(4), scl=Pin(5))oled = ssd1306.SSD1306_I2C(128, 64, i2c)def wifi_main():    wifi = network.WLAN(network.STA_IF)    if not wifi.isconnected():      print('连接到Wi-Fi...')      wifi.active(True)      wifi.connect('你的Wi-Fi名称', '你的Wi-Fi密码')      while not wifi.isconnected():            pass    print('Wi-Fi连接成功')    print('网络配置:', wifi.ifconfig())def sync_time():    ntptime.settime()def display_time():    current_time = time.localtime()    hour = str(current_time).zfill(2)    minute = str(current_time).zfill(2)    second = str(current_time).zfill(2)    oled.fill(0)    oled.text(hour + ':' + minute + ':' + second, 0, 0)    oled.show()wifi_main()sync_time()while True:    display_time()    time.sleep(1)在这个修改后的代码中,我们加入了ntptime库。首先调用wifi_main()函数连接到Wi-Fi网络。请将'你的Wi-Fi名称'和'你的Wi-Fi密码'替换为你实际的Wi-Fi名称和密码。然后在sync_time()函数中,调用ntptime.settime()来同步时间。接下来,在display_time()函数中,将当前时间显示在oled屏幕上。在主循环中,我们先调用wifi_main()函数连接到Wi-Fi网络,然后调用sync_time()函数同步时间。最后不断调用display_time()函数来显示当前时间。这样就可以通过网络获取北京时间并显示在oled屏幕上了。

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。
页: [1]
查看完整版本: micro python 代码续写