File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ jobs:
22
22
awk -F '\/' '{ print tolower($2) }' |
23
23
tr '_' '-'
24
24
)
25
- - name : Set up Python 3.6
25
+ - name : Set up Python 3.7
26
26
uses : actions/setup-python@v1
27
27
with :
28
- python-version : 3.6
28
+ python-version : 3.7
29
29
- name : Versions
30
30
run : |
31
31
python3 --version
Original file line number Diff line number Diff line change 8
8
"""
9
9
10
10
import time
11
- from adafruit_ov7670 import (
12
- OV7670 ,
13
- OV7670_SIZE_DIV1 ,
14
- OV7670_SIZE_DIV16 ,
15
- OV7670_TEST_PATTERN_COLOR_BAR ,
16
- OV7670_TEST_PATTERN_SHIFTING_1 ,
17
- OV7670_TEST_PATTERN_COLOR_BAR_FADE ,
18
- )
19
11
from displayio import (
20
12
Bitmap ,
21
13
Group ,
29
21
import board
30
22
import busio
31
23
import digitalio
24
+ from adafruit_ov7670 import (
25
+ OV7670 ,
26
+ OV7670_SIZE_DIV1 ,
27
+ OV7670_SIZE_DIV16 ,
28
+ )
32
29
33
30
# Set up the display (You must customize this block for your display!)
34
31
release_displays ()
You can’t perform that action at this time.
0 commit comments