Skip to content
Snippets Groups Projects
Commit 34ff44e6 authored by kimtran's avatar kimtran
Browse files

Delete test.py

parent b6e7e71e
No related branches found
No related tags found
No related merge requests found
import ssd1306
import fifo
import time
from machine import Pin
import micropython
micropython.alloc_emergency_exception_buf(200)
rb = fifo.Fifo(50)
print('I am test.py')
if rb.empty():
print('Fifo is empty')
led = Pin("LED", Pin.OUT)
while True:
led.toggle()
time.sleep(1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment