这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » DIY与开源设计 » 电子DIY » [Let'sDo第3期]DIY一个电子测光表2过程贴

共4条 1/1 1 跳转至

[Let'sDo第3期]DIY一个电子测光表2过程贴

菜鸟
2024-11-16 17:19:53     打赏


[Let'sDo第3期]    DIY一个电子测光表       2 过程贴


主板资料:

1、https://www.adafruit.com/product/5691

2、https://learn.adafruit.com/esp32-s3-reverse-tft-feather


刷固件:

从官网下载Adafruit ESP32-S3主控板固件:https://circuitpython.org/board/adafruit_feather_esp32s3_reverse_tft


测试程序:

1731748417553.png

1)呼吸灯

import board
import time
from digitalio import DigitalInOut, Direction, Pull
led = DigitalInOut(board.LED)
led.direction = Direction.OUTPUT
while True:
    led.value = True
    time.sleep(0.5)
    led.value = False
time.sleep(0.5)

1731748445093.png

2)点亮屏幕

import board
import terminalio
from adafruit_display_text import label
text = "Hello world"
text_area = label.Label(terminalio.FONT, text=text)
text_area.x = 10
text_area.y = 10
board.DISPLAY.root_group = text_area
while True:
  Pass

1731748493165.png

3)转舵机

import time
import board
import pwmio
from adafruit_motor import servo
# create a PWMOut object on Pin D5.
pwm = pwmio.PWMOut(board.D5, duty_cycle=2 ** 15, frequency=50)
# Create a servo object, my_servo.
my_servo = servo.Servo(pwm)
while True:
    for angle in range(0, 180, 1):  # 0 - 180 degrees, 5 degrees at a time.
        my_servo.angle = angle
        time.sleep(0.01)
    for angle in range(180, 0, -1): # 180 - 0 degrees, 5 degrees at a time.
        my_servo.angle = angle
        time.sleep(0.01)

image.png

4)测光照

import time
import board
import adafruit_bh1750
i2c = board.I2C()
sensor = adafruit_bh1750.BH1750(i2c)
while True:
    print("%.2f Lux"%sensor.lux)
    time.sleep(1)


GIT其他示例资料:

点灯示例

https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/main/CircuitPython_Essentials/CircuitPython_Digital_In_Out/code.py

屏幕示例

https://github.com/adafruit/Adafruit_CircuitPython_Display_Text

https://learn.adafruit.com/esp32-s3-reverse-tft-feather/displayio-example

光照示例

https://github.com/adafruit/Adafruit_CircuitPython_BH1750

舵机示例

https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/main/CircuitPython_Essentials/CircuitPython_Servo/code.py





关键词: 点灯     屏幕     舵机     光照    

专家
2024-11-17 00:44:30     打赏
2楼

感谢分享


专家
2024-11-17 00:46:31     打赏
3楼

感谢分享


专家
2024-11-17 00:49:00     打赏
4楼

感谢分享


共4条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]