Skip to content

Commit cd01933

Browse files
committed
cleanup
1 parent 68df546 commit cd01933

File tree

3 files changed

+2
-52
lines changed

3 files changed

+2
-52
lines changed

examples/paint.py

Lines changed: 0 additions & 39 deletions
This file was deleted.

examples/stmpe610_paint_demo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
if st.touched:
3030
while not st.buffer_empty:
3131
ts = st.touches
32-
for index in range(len(ts)):
33-
point = ts[index] # the shield only supports one point!
32+
for _ in range(len(ts)):
33+
point = ts[_] # get the next point
3434
# perform transformation to get into display coordinate system!
3535
y = point['y']
3636
x = 4096 - point['x']

examples/stmpe610_test.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)