Skip to content

Commit 33dc5f0

Browse files
author
Russell Green
committedJan 28, 2023
fix: adds missing pins
1 parent b1ecc21 commit 33dc5f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/server.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212
__author__ = "Russell Green"
1313
__license__ = "MIT"
14-
__version__ = "0.0.0-rc.4"
14+
__version__ = "0.0.0-rc.5"
1515
__maintainer__ = "Russell.Green"
1616
__email__ = "me@rusty.green"
1717
__status__ = "Production"
@@ -45,7 +45,7 @@ class InitialPinBehavior(Enum):
4545
port = os.getenv('SERVER_PORT') or 5000
4646
log_level = os.getenv('SERVER_LOG_LEVEL') or log.INFO
4747
debug = False
48-
gpio_pins = (7, 11, 12, 13, 15, 16, 18, 22, 29, 31, 32, 33, 36, 37)
48+
gpio_pins = (7, 11, 12, 13, 15, 16, 18, 22, 29, 31, 32, 33, 35, 36, 37, 38, 40)
4949
initial_pin_state = InitialPinBehavior.DEFAULT
5050
app = Flask(__name__)
5151
CORS(app)

0 commit comments

Comments
 (0)
Please sign in to comment.