Skip to content

Commit 1cb4da9

Browse files
committed
commit
1 parent dfbb6df commit 1cb4da9

File tree

2 files changed

+50
-3
lines changed

2 files changed

+50
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# DumbDisplay MicroPython Library #
22

3-
DumbDisplay MicroPython Library is a port of the Arduino DumbDisplay library (https://github.com/trevorwslee/Arduino-DumbDisplay)
3+
DumbDisplay MicroPython Library is a port of the Arduino DumbDisplay Library (https://github.com/trevorwslee/Arduino-DumbDisplay)
44
for the DumbDisplay Android app -- https://play.google.com/store/apps/details?id=nobody.trevorlee.dumbdisplay
55

6-
For a video introduction to it, please want to watch the YouTube video ** Introducing DumbDisplay MicroPython Library -- with ESP32, Raspberry Pi Pico, and Raspberry Pi Zero ** -- https://www.youtube.com/watch?v=KVU26FyXs5M
6+
For a video introduction, please watch the YouTube video: Introducing DumbDisplay MicroPython Library -- with ESP32, Raspberry Pi Pico, and Raspberry Pi Zero -- https://www.youtube.com/watch?v=KVU26FyXs5M
77

88
Although the porting is not complete, nevertheless, a large portion of DumbDisplay functionalities have been ported. Hopefully, this should already be helpful for friends that develop programs for micro-controller boards in Micro-Python.
99

@@ -114,7 +114,9 @@ Notes:
114114
import machine
115115
machine.reset_cause()
116116
```
117+
* If DumbDisplay Android app fails to make connection to desktop / laptopo, check your descktop firewall settings; try switching desktop WIFI to use 2.4 GHz.
117118
118119
119-
### Enjoy! May God bless you! Peace be with you! Jesus loves you! ###
120+
121+
## Enjoy! May God bless you! Peace be with you! Jesus loves you! ##
120122

projects/testing/main.py

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import time
2+
3+
4+
def runDebug():
5+
from projects.testing import debug
6+
debug.loop()
7+
8+
def runPicoDebug():
9+
from projects.testing import pico_debug
10+
pico_debug.loop()
11+
12+
13+
def runG():
14+
import projects.testing.ddgraphical as ddg
15+
ddg.run()
16+
time.sleep(10)
17+
18+
def runBleG():
19+
import projects.testing.ddgraphical as ddg
20+
ddg.runBle()
21+
time.sleep(10)
22+
23+
def runUartG():
24+
import projects.testing.ddgraphical as ddg
25+
ddg.runUart()
26+
time.sleep(10)
27+
28+
def runPicoG():
29+
import projects.testing.pico_ddgraphical as ddg
30+
ddg.run()
31+
32+
def runUart():
33+
import projects.testing.uart_test as ut
34+
ut.run()
35+
36+
37+
def show():
38+
print("import test")
39+
print(". test.runDebug()")
40+
print(". test.runPicoDebug()")
41+
print(". test.runG()")
42+
print(". test.runBleG()")
43+
print(". test.runUartG()")
44+
print(". test.runPicoG()")
45+
print(". test.runUart()")

0 commit comments

Comments
 (0)