alpha
Login
or
Join now
dunkirk.sh
/
inky
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
bug: fix pullup resister
author
Kieran Klukas
date
1 year ago
(Apr 13, 2025, 6:48 PM -0400)
commit
fd2c785f
fd2c785ff0f8a6f97584afaa3f0fbd80431ffa6f
parent
4a90d13e
4a90d13e61f342fd65d8d050ab327ad77444c861
+1
-1
1 changed file
Expand all
Collapse all
Unified
Split
src
camera_server.py
+1
-1
src/camera_server.py
Reviewed
···
45
45
46
46
# Set up GPIO
47
47
GPIO.setmode(GPIO.BCM)
48
48
-
GPIO.setup(Config.BUTTON_PIN, GPIO.IN, pull_up_down=GPIO.PUD_UP)
48
48
+
GPIO.setup(Config.BUTTON_PIN, GPIO.IN)
49
49
50
50
# WebSocket clients set
51
51
connected_clients = set()