i guess its done? ¯\_(ツ)_/¯

This commit is contained in:
2026-04-17 00:09:59 +05:30
parent 10b43aede7
commit 2e15caf8ee
2 changed files with 17 additions and 0 deletions

9
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,9 @@
{
"python.analysis.typeshedPaths": [
"~/.micropico-stubs/included"
],
"python.analysis.extraPaths": [
"~/.micropico-stubs/included"
],
"python-envs.defaultEnvManager": "ms-python.python:system"
}

8
main.py Normal file
View File

@@ -0,0 +1,8 @@
import time
from machine import Pin
Inverter_Pin = Pin(4, Pin.IN)
while True:
print(Inverter_Pin.value())
time.sleep(1)