summaryrefslogtreecommitdiffstats
path: root/alcogotchi-server/alcogotchi.py
diff options
context:
space:
mode:
authorGeorge Barrell <78610776+RogerGabeller-ml@users.noreply.github.com>2024-11-17 12:02:44 +0000
committerGitHub <noreply@github.com>2024-11-17 12:02:44 +0000
commitec2bf291c0375664064740248a3264bb4540b48a (patch)
tree275fb3f83e38d271d3968965b133d10f6b9511cb /alcogotchi-server/alcogotchi.py
parentc4277995d06d5f68db221bf3ff611cf1dd6f4068 (diff)
Update alcogotchi.py
Diffstat (limited to 'alcogotchi-server/alcogotchi.py')
-rw-r--r--alcogotchi-server/alcogotchi.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/alcogotchi-server/alcogotchi.py b/alcogotchi-server/alcogotchi.py
index 06f0fe6..3aab53e 100644
--- a/alcogotchi-server/alcogotchi.py
+++ b/alcogotchi-server/alcogotchi.py
@@ -270,12 +270,13 @@ class Server:
ap = network.WLAN(network.AP_IF)
ap.active(True)
-ap.config(essid="Your mum", password="password123")
+ap.config(essid="Alcogotchi", password="password123")
print("Connection avalible on {0}".format(ap.ifconfig()))
CLUB = "c2:2 c d# c:1 f:2 c:1 f:2 f# g c c g c:1 f#:2 c:1 f#:2 f d# "
def the_club():
- buzzer.melody(CLUB)
+ for i in range(3):
+ buzzer.melody(CLUB)
server = Server()