120|0

650

帖子

8

TA的资源

纯净的硅(初级)

楼主
 

【Follow me第二季第1期】制作不倒翁——展示不倒翁运动过程中的不同灯光效果 [复制链接]

  本帖最后由 29447945 于 2024-9-1 17:45 编辑

上一节我们使用超声波做了接近检测,这一节我们使用运动传感器制作不倒翁效果;

这一节用到的传感器是LIS3DH; 是一款由 STMicroelectronics 生产的超小型、高性能、低功耗的 3 轴加速度计。它能够检测和测量 x、y 和 z 轴上的加速度,即设备在这三个方向上的运动和方向变化。

这里运动传感器获取xyz轴数据,然后根据数据来控制不同的led颜色;

# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
# SPDX-License-Identifier: MIT



import time
from adafruit_circuitplayground import cp

cp.pixels.brightness = 0.2  # Adjust overall brightness as desired, between 0 and 1


def color_amount(accel_component):
    """Convert acceleration component (x, y, or z) to color amount (r, g, or b)"""
    standard_gravity = 9.81  # Acceleration (m/s²) due to gravity at the earth’s surface
    accel_magnitude = abs(accel_component)  # Ignore the direction
    constrained_accel = min(accel_magnitude, standard_gravity)  # Constrain values
    normalized_accel = constrained_accel / standard_gravity  # Convert to 0–1
    return round(normalized_accel * 255)  # Convert to 0–255


def format_acceleration():
    return ", ".join(("{:>6.2f}".format(axis_value) for axis_value in acceleration))


def format_rgb():
    return ", ".join(("{:>3d}".format(rgb_amount) for rgb_amount in rgb_amounts))


def log_values():
    print("({}) ==> ({})".format(format_acceleration(), format_rgb()))


while True:
    acceleration = cp.acceleration
    rgb_amounts = [color_amount(axis_value) for axis_value in acceleration]
    cp.pixels.fill(rgb_amounts)
    log_values()
    time.sleep(0.1)

这里打印数据如下:

 

实际效果如下:

cd551fafb404987ddbbde287ce770953

 

点赞 关注
 
 

回复
举报
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表