Nota
Ciao, benvenuto nella Community di Appassionati di Raspberry Pi & Arduino & ESP32 di SunFounder su Facebook! Approfondisci Raspberry Pi, Arduino ed ESP32 insieme ad altri appassionati.
Perché Unirsi?
Supporto da Esperti: Risolvi problemi post-vendita e sfide tecniche con l’aiuto della nostra community e del nostro team.
Impara e Condividi: Scambia suggerimenti e tutorial per migliorare le tue competenze.
Anteprime Esclusive: Ottieni accesso anticipato agli annunci dei nuovi prodotti e alle anteprime.
Sconti Speciali: Approfitta di sconti esclusivi sui nostri prodotti più recenti.
Promozioni e Giveaway Festivi: Partecipa ai giveaway e alle promozioni festive.
👉 Pronto a esplorare e creare con noi? Clicca [Qui] e unisciti oggi stesso!
7.12 Livella Digitale a Bolla
Una bubble Level, è uno strumento progettato per indicare se una superficie è orizzontale (in piano) o verticale (a piombo). Esistono diversi tipi di livelle utilizzate da carpentieri, muratori, posatori di mattoni, altri operai edili, topografi, montatori e altri lavoratori del metallo, così come in alcuni lavori fotografici e videografici.
Qui realizzeremo una livella digitale a bolla utilizzando l’MPU6050 e una matrice LED 8x8. Quando inclini l’MPU6050, anche la bolla sulla matrice LED si inclinerà.
Componenti Necessari
In questo progetto, abbiamo bisogno dei seguenti componenti.
È sicuramente conveniente acquistare un kit completo, ecco il link:
Nome |
ELEMENTI IN QUESTO KIT |
LINK |
|---|---|---|
Kepler Kit |
450+ |
Puoi anche acquistarli separatamente dai link sottostanti.
SN |
COMPONENTE |
QUANTITÀ |
LINK |
|---|---|---|---|
1 |
1 |
||
2 |
Cavo Micro USB |
1 |
|
3 |
1 |
||
4 |
Diversi |
||
5 |
1 |
||
6 |
2 |
||
7 |
1 |
Schema
L’MPU6050 rileva i valori di accelerazione in ogni direzione e calcola l’angolo di assetto.
Di conseguenza, il programma disegna un punto 2x2 sulla matrice LED basandosi sui dati dei due chip 74HC595.
Con il cambiamento dell’angolo di assetto, il programma invia dati diversi ai chip 74HC595, e la posizione del punto cambia, creando l’effetto di una bolla.
Cablaggio
Codice
Nota
Apri il file
7.12_digital_bubble_level.pynel percorsokepler-kit-main/micropythonoppure copia questo codice in Thonny, quindi clicca su «Run Current Script» o semplicemente premi F5 per eseguirlo.Non dimenticare di selezionare l’interprete «MicroPython (Raspberry Pi Pico)» nell’angolo in basso a destra.
Per tutorial dettagliati, fai riferimento a Aprire ed Eseguire Codice Direttamente.
Qui è necessario utilizzare le librerie
imu.pyevector3d.py, verifica se sono state caricate su Pico W; per un tutorial dettagliato, fai riferimento a 1.4 Caricare le Librerie su Pico.
import machine
from machine import I2C, Pin
import time
import math
from imu import MPU6050
# Initialize I2C communication with MPU6050 sensor
i2c = I2C(1, sda=Pin(6), scl=Pin(7), freq=400000)
mpu = MPU6050(i2c)
# Function to calculate the distance between two points
def dist(a, b):
return math.sqrt((a * a) + (b * b))
# Function to calculate rotation along the y-axis
def get_y_rotation(x, y, z):
radians = math.atan2(x, dist(y, z))
return -math.degrees(radians)
# Function to calculate rotation along the x-axis
def get_x_rotation(x, y, z):
radians = math.atan2(y, dist(x, z))
return math.degrees(radians)
# Function to get the current angles from the MPU6050 sensor
def get_angle():
y_angle = get_y_rotation(mpu.accel.x, mpu.accel.y, mpu.accel.z)
x_angle = get_x_rotation(mpu.accel.x, mpu.accel.y, mpu.accel.z)
return x_angle, y_angle
# Initialize shift register pins for controlling the LED matrix
sdi = machine.Pin(18, machine.Pin.OUT)
rclk = machine.Pin(19, machine.Pin.OUT)
srclk = machine.Pin(20, machine.Pin.OUT)
# Function to shift data into the shift register
def hc595_in(dat):
for bit in range(7, -1, -1):
srclk.low()
time.sleep_us(30)
sdi.value(1 & (dat >> bit))
time.sleep_us(30)
srclk.high()
# Function to output the data from the shift register to the LED matrix
def hc595_out():
rclk.high()
time.sleep_us(200)
rclk.low()
# Function to display a glyph (8x8 matrix) on the LED matrix
def display(glyph):
for i in range(0, 8):
hc595_in(glyph[i])
hc595_in(0x80 >> i)
hc595_out()
# Convert a 2D matrix to a glyph that can be displayed on the LED matrix
def matrix_2_glyph(matrix):
glyph = [0 for i in range(8)]
for i in range(8):
for j in range(8):
glyph[i] += matrix[i][j] << j
return glyph
# Clamp a value between a specified minimum and maximum
def clamp_number(val, min_val, max_val):
return min_val if val < min_val else max_val if val > max_val else val
# Map a value from one range to another
def interval_mapping(x, in_min, in_max, out_min, out_max):
return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min
# Calculate the position of the bubble in the matrix based on the MPU6050 readings
sensitivity = 4 # Sensitivity of the bubble movement
matrix_range = 7 # The matrix size is 8x8, so the range is 0-7
point_range = matrix_range - 1 # Bubble's position should be between 0 and 6
# Function to calculate the position of the bubble based on sensor data
def bubble_position():
y, x = get_angle() # Get the current rotation angles
x = int(clamp_number(interval_mapping(x, 90, -90, 0 - sensitivity, point_range + sensitivity), 0, point_range))
y = int(clamp_number(interval_mapping(y, -90, 90, point_range + sensitivity, 0 - sensitivity), 0, point_range))
return [x, y]
# Drop the bubble (represented by turning off 2x2 LEDs) into the matrix
def drop_bubble(matrix, bubble):
matrix[bubble[0]][bubble[1]] = 0
matrix[bubble[0] + 1][bubble[1]] = 0
matrix[bubble[0]][bubble[1] + 1] = 0
matrix[bubble[0] + 1][bubble[1] + 1] = 0
return matrix
# Main loop
while True:
matrix = [[1 for i in range(8)] for j in range(8)] # Create an empty matrix (all LEDs on)
bubble = bubble_position() # Get the current bubble position based on sensor data
matrix = drop_bubble(matrix, bubble) # Drop the bubble into the matrix
display(matrix_2_glyph(matrix)) # Display the matrix on the LED grid
time.sleep(0.1) # Add a small delay to slow down updates
Una volta eseguito il programma, posiziona la breadboard su una superficie livellata. Un punto apparirà al centro della matrice LED (se non è al centro, l’MPU6050 potrebbe non essere in piano). Quando inclini la breadboard, il punto si sposterà nella direzione in cui l’hai inclinata.

