template gy-521 working for mpu6050

This commit is contained in:
Priec
2025-12-08 20:57:35 +01:00
commit 3dfda03a3b
4 changed files with 332 additions and 0 deletions

11
main.py Normal file
View File

@@ -0,0 +1,11 @@
from os import listdir, chdir
from machine import Pin
from time import sleep_ms
# List all files directory.
print("Hello World")
# Simple example loop
for i in range(10):
print("x")
sleep_ms(500)