M5GO Websockets Update

This commit is contained in:
2026-04-12 05:06:10 +00:00
parent 8c05c241fe
commit 5772782dcf
2 changed files with 415 additions and 52 deletions
+177
View File
@@ -0,0 +1,177 @@
# --- FACE ASSETS ---
C = {
'0': 0x222222,
'Y': 0xFFFF00,
'R': 0xFF0000,
'W': 0xFFFFFF,
'B': 0x000000,
'P': 0xFF8888,
'D': 0x555555
}
f_s_o = [
"0000000000000000",
"0000000000000000",
"000WWW0000WWW000",
"00WWBW0000WWBW00",
"00WWBW0000WWBW00",
"000WWW0000WWW000",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"YY000000000000YY",
"0YY0000000000YY0",
"00YY00000000YY00",
"000YYYYYYYYYY000",
"00000YYYYYY00000",
"0000000000000000",
"0000000000000000"
]
f_s_h = [
"0000000000000000",
"0000000000000000",
"0000000000000000",
"000WWW0000WWW000",
"00WWBW0000WWBW00",
"000WWW0000WWW000",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"YY000000000000YY",
"0YY0000000000YY0",
"00YY00000000YY00",
"000YYYYYYYYYY000",
"00000YYYYYY00000",
"0000000000000000",
"0000000000000000"
]
f_s_c = [
"0000000000000000",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"00WWWW0000WWWW00",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"YY000000000000YY",
"0YY0000000000YY0",
"00YY00000000YY00",
"000YYYYYYYYYY000",
"00000YYYYYY00000",
"0000000000000000",
"0000000000000000"
]
f_a_o = [
"0000000000000000",
"0DDDD000000DDDD0",
"00DDDD0000DDDD00",
"000DDDD00DDDD000",
"000WWW0000WWW000",
"00WWBB0000BBWW00",
"000WWW0000WWW000",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"000000RRRR000000",
"0000RRRRRRRR0000",
"00RRRR0000RRRR00",
"0RRR00000000RRR0",
"0000000000000000",
"0000000000000000"
]
f_a_h = [
"0000000000000000",
"0DDDD000000DDDD0",
"00DDDD0000DDDD00",
"000DDDD00DDDD000",
"0000000000000000",
"000WWW0000WWW000",
"00WWBB0000BBWW00",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"000000RRRR000000",
"0000RRRRRRRR0000",
"00RRRR0000RRRR00",
"0RRR00000000RRR0",
"0000000000000000",
"0000000000000000"
]
f_a_c = [
"0000000000000000",
"0DDDD000000DDDD0",
"00DDDD0000DDDD00",
"000DDDD00DDDD000",
"0000000000000000",
"0000000000000000",
"000WW000000WW000",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"000000RRRR000000",
"0000RRRRRRRR0000",
"00RRRR0000RRRR00",
"0RRR00000000RRR0",
"0000000000000000",
"0000000000000000"
]
f_t_1 = [
"0000000000000000",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"000WWW0000WWW000",
"00WWWW0000WWWW00",
"000WWW0000WWW000",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"000YYYYYYYYYY000",
"0000000000000000",
"0000000000000000",
"0000000000000000"
]
f_t_2 = [
"0000000000000000",
"0000000000000000",
"00DD00000000DD00",
"000DD000000DD000",
"0000000000000000",
"000WWW0000WWW000",
"00WWBW0000WWBW00",
"000WWW0000WWW000",
"0000000000000000",
"0000000000000000",
"0000000000000000",
"0000RRRRRRRR0000",
"000RR000000RR000",
"0000000000000000",
"0000000000000000",
"0000000000000000"
]
def d_s(lcd, f, s_x, s_y, p_s):
for r in range(16):
c = 0
while c < 16:
s_c = c
v = f[r][c]
while c < 16 and f[r][c] == v:
c += 1
w = c - s_c
x_p = s_x + (s_c * p_s)
y_p = s_y + (r * p_s)
lcd.fillRect(x_p, y_p, w * p_s, p_s, C[v])
+238 -52
View File
@@ -2,29 +2,25 @@ import network
import time import time
import machine import machine
import json import json
import math
import _thread
import websocket
from m5stack import * from m5stack import *
from m5ui import * from m5ui import *
from uiflow import * from uiflow import *
# Attempt to import websocket client (standard on some micropython builds like M5Stack)
try:
import uwebsockets.client as websockets
except ImportError:
websockets = None
lcd.print("websockets module missing", 0, 0, 0xFF0000)
setScreenColor(0x222222) setScreenColor(0x222222)
# --- CONFIGURATION --- # --- CONFIGURATION ---
WIFI_SSID = "YOUR_SSID" WIFI_SSID = "Blobby"
WIFI_PASS = "YOUR_PASSWORD" WIFI_PASS = "73556088"
# Update this to the IP address of your backend server # Update this to the IP address of your backend server
WS_URL = "ws://192.168.1.100:8000/ws/voice" WS_URL = "ws://192.168.137.1:8000/ws/voice"
# --------------------- # ---------------------
def draw_status(status, color): def draw_status(status, color):
lcd.fillRect(0, 50, 320, 50, 0x222222) lcd.fillRect(0, 220, 320, 20, 0x222222)
lcd.print(status, int((320 - len(status) * 12) / 2), 65, color) lcd.print(status, int((320 - len(status) * 8) / 2), 220, color)
lcd.print("Connecting to WiFi...", 0, 0, 0xFFFFFF) lcd.print("Connecting to WiFi...", 0, 0, 0xFFFFFF)
wlan = network.WLAN(network.STA_IF) wlan = network.WLAN(network.STA_IF)
@@ -41,52 +37,168 @@ if wlan.isconnected():
lcd.clear() lcd.clear()
lcd.print("WiFi Connected!", 0, 0, 0x00FF00) lcd.print("WiFi Connected!", 0, 0, 0x00FF00)
lcd.print(wlan.ifconfig()[0], 0, 20, 0x00FF00) lcd.print(wlan.ifconfig()[0], 0, 20, 0x00FF00)
time.sleep(1)
lcd.clear()
else: else:
lcd.clear() lcd.clear()
lcd.print("WiFi Failed", 0, 0, 0xFF0000) lcd.print("WiFi Failed", 0, 0, 0xFF0000)
time.sleep(2)
lcd.clear()
# Initialize I2S for Microphone (PDM on M5GO/Fire)
try: try:
audio_in = machine.I2S( adc = machine.ADC(34)
0, adc.atten(machine.ADC.ATTN_11DB)
sck=machine.Pin(12), except:
ws=machine.Pin(0), try:
sd=machine.Pin(34), adc = machine.ADC(machine.Pin(34))
mode=machine.I2S.RX, adc.atten(machine.ADC.ATTN_11DB)
bits=16, except:
format=machine.I2S.MONO, adc = None
rate=16000,
ibuf=4096
)
except Exception as e:
lcd.print("Mic I2S Error", 0, 40, 0xFF0000)
# Initialize I2S for Speaker def get_db():
try: if not adc: return 30
audio_out = machine.I2S( sum_v = 0
1, sum_sq = 0
sck=machine.Pin(12), count = 0
ws=machine.Pin(0), end_t = time.ticks_ms() + 40
sd=machine.Pin(2), while time.ticks_ms() < end_t:
mode=machine.I2S.TX, try:
bits=16, v = adc.read()
format=machine.I2S.MONO, sum_v += v
rate=16000, sum_sq += v * v
ibuf=8192 count += 1
) except:
except Exception as e: pass
lcd.print("Speaker I2S Error", 0, 60, 0xFF0000)
if count == 0: return 30
mean = sum_v / count
variance = (sum_sq / count) - (mean * mean)
if variance <= 1: return 30
amp = math.sqrt(variance)
if amp <= 1: return 30
# Use your specific calculation formula to properly scale to human DB
db = 20 * math.log10(amp) + 25
return db
def init_mic():
try:
if hasattr(machine.I2S, "RX"):
audio_in = machine.I2S(
0,
sck=machine.Pin(0),
ws=machine.Pin(0),
sd=machine.Pin(34),
mode=machine.I2S.RX,
bits=16,
format=machine.I2S.MONO,
rate=16000,
ibuf=4096
)
return audio_in
else:
# Fallback for old Micropython (e.g. M5Stack UIFlow)
mode = getattr(machine.I2S, "MODE_MASTER", 1) | getattr(machine.I2S, "MODE_RX", 2)
if hasattr(machine.I2S, "MODE_PDM"):
mode |= getattr(machine.I2S, "MODE_PDM", 0)
cfmt = getattr(machine.I2S, "CHANNEL_FMT_ALL_LEFT", 1)
dfmt = getattr(machine.I2S, "FORMAT_I2S", 1)
try_args = [
([getattr(machine.I2S, "NUM0", 0), mode, 16000, 16, cfmt, dfmt], {}),
([getattr(machine.I2S, "NUM0", 0), mode, 16000, 16], {}),
([getattr(machine.I2S, "NUM0", 0)], {"mode": mode, "sample_rate": 16000, "bits": 16, "channel_format": cfmt, "data_format": dfmt}),
([getattr(machine.I2S, "NUM0", 0)], {"mode": mode, "sample_rate": 16000, "bits": 16}),
([getattr(machine.I2S, "NUM0", 0)], {"mode": mode, "bck": 0, "ws": 0, "sd": 34, "sample_rate": 16000, "bits": 16}),
([], {"mode": mode, "sample_rate": 16000, "bits": 16}),
([getattr(machine.I2S, "NUM0", 0)], {"mode": mode}),
([], {"mode": mode}),
]
audio_in = None
last_e = None
for args, kwargs in try_args:
try:
audio_in = machine.I2S(*args, **kwargs)
break
except Exception as e:
last_e = e
if audio_in is None:
raise Exception("Mic fallback failed: " + str(last_e))
return audio_in
except Exception as e:
print("Mic I2S Error:", repr(e))
lcd.print("Mic Err: " + str(e)[:20], 0, 40, 0xFF0000)
return None
def init_spk():
try:
if hasattr(machine.I2S, "TX"):
audio_out = machine.I2S(
1,
sck=machine.Pin(12),
ws=machine.Pin(0),
sd=machine.Pin(25), # M5Stack Core/GO speaker is typically on Pin 25
mode=machine.I2S.TX,
bits=16,
format=machine.I2S.MONO,
rate=16000,
ibuf=8192
)
return audio_out
else:
mode = getattr(machine.I2S, "MODE_MASTER", 1) | getattr(machine.I2S, "MODE_TX", 2)
if hasattr(machine.I2S, "MODE_DAC_BUILT_IN"):
mode |= machine.I2S.MODE_DAC_BUILT_IN
cfmt = getattr(machine.I2S, "CHANNEL_FMT_RIGHT_LEFT", 1)
dfmt = getattr(machine.I2S, "FORMAT_I2S_MSB", 1)
try_args = [
([getattr(machine.I2S, "NUM1", 1), mode, 16000, 16, cfmt, dfmt], {}),
([getattr(machine.I2S, "NUM1", 1), mode, 16000, 16], {}),
([getattr(machine.I2S, "NUM1", 1)], {"mode": mode, "sample_rate": 16000, "bits": 16, "channel_format": cfmt, "data_format": dfmt}),
([getattr(machine.I2S, "NUM1", 1)], {"mode": mode, "sample_rate": 16000, "bits": 16}),
([getattr(machine.I2S, "NUM1", 1)], {"mode": mode, "bck": 12, "ws": 0, "sd": 25, "sample_rate": 16000, "bits": 16}),
([], {"mode": mode, "sample_rate": 16000, "bits": 16}),
([getattr(machine.I2S, "NUM1", 1)], {"mode": mode}),
([], {"mode": mode}),
]
audio_out = None
last_e = None
for args, kwargs in try_args:
try:
audio_out = machine.I2S(*args, **kwargs)
break
except Exception as e:
last_e = e
if audio_out is None:
raise Exception("Spk fallback failed: " + str(last_e))
return audio_out
except Exception as e:
print("Spk I2S Error:", repr(e))
lcd.print("Spk Err: " + str(e)[:20], 0, 60, 0xFF0000)
return None
def deinit_i2s(i2s_obj):
if i2s_obj:
try:
if hasattr(i2s_obj, 'deinit'):
i2s_obj.deinit()
except Exception as e:
print("I2S Deinit Error:", e)
ws = None ws = None
def connect_ws(): def connect_ws():
global ws global ws
if not websockets:
draw_status("WS Lib Missing", 0xFF0000)
return False
try: try:
if ws: ws = websocket.WebSocket()
ws.close() ws.connect(WS_URL)
ws = websockets.connect(WS_URL)
return True return True
except Exception as e: except Exception as e:
draw_status("WS Connection Error", 0xFF0000) draw_status("WS Connection Error", 0xFF0000)
@@ -96,6 +208,17 @@ draw_status("Hold Button A to Talk", 0xFFFFFF)
buf = bytearray(1024) buf = bytearray(1024)
# Noise monitoring variables
l_db_s = ""
s_db = 30.0
# Location settings - change this depending on where the M5GO is placed
CURRENT_ROOM_ID = "mckeldin"
CURRENT_LAT = 38.986021
CURRENT_LNG = -76.944949
last_db_post_time = 0
while True: while True:
# m5stack core button check # m5stack core button check
if btnA.isPressed(): if btnA.isPressed():
@@ -108,13 +231,17 @@ while True:
draw_status("Listening...", 0x0000FF) draw_status("Listening...", 0x0000FF)
# Read and send audio while button is held # Read and send audio while button is held
audio_in = init_mic()
while btnA.isPressed(): while btnA.isPressed():
try: try:
num_read = audio_in.readinto(buf) if audio_in:
if num_read and num_read > 0 and ws: num_read = audio_in.readinto(buf)
ws.send(buf[:num_read]) if num_read and num_read > 0 and ws:
ws.send(buf[:num_read])
except Exception as e: except Exception as e:
pass pass
deinit_i2s(audio_in)
audio_in = None
# Button released # Button released
draw_status("Thinking...", 0xFFFF00) draw_status("Thinking...", 0xFFFF00)
@@ -124,18 +251,77 @@ while True:
# Wait for response audio # Wait for response audio
draw_status("Speaking...", 0x00FF00) draw_status("Speaking...", 0x00FF00)
audio_out = init_spk()
while True: while True:
resp = ws.recv() resp = ws.recv()
if resp and isinstance(resp, bytes): if resp and isinstance(resp, bytes):
if len(resp) == 0: if len(resp) == 0:
break # End of audio transmission break # End of audio transmission
audio_out.write(resp)
# Briefly pause face animation updates while speaker is playing
# to prevent dropping packets or stuttering
if audio_out:
audio_out.write(resp)
else: else:
break # Empty or non-bytes response means end break # Empty or non-bytes response means end
deinit_i2s(audio_out)
audio_out = None
except Exception as e: except Exception as e:
draw_status("Error during playback", 0xFF0000) draw_status("Error during playback", 0xFF0000)
ws = None # force reconnect next time ws = None # force reconnect next time
draw_status("Hold Button A to Talk", 0xFFFFFF) draw_status("Hold Button A to Talk", 0xFFFFFF)
time.sleep(0.05) # ---------------------------------------------
# NOISE MONITORING LOOP
# ---------------------------------------------
r_db = get_db()
s_db = (s_db * 0.8) + (r_db * 0.2)
db = int(s_db)
if db < 40:
i_c = 0x89b4fa
elif db < 55:
i_c = 0x94e2d5
elif db < 65:
i_c = 0xf9e2af
elif db < 80:
i_c = 0xfab387
else:
i_c = 0xf38ba8
lcd.fillRect(0, 0, 320, 4, i_c)
db_s = "Noise: %d dB" % db
if db_s != l_db_s:
lcd.fillRect(0, 4, 150, 15, 0x222222)
lcd.print(db_s, 5, 4, i_c)
l_db_s = db_s
# ---------------------------------------------
# POST DB DATA PERIODICALLY
# ---------------------------------------------
try:
now_ms = time.ticks_ms()
if time.ticks_diff(now_ms, last_db_post_time) > 15000: # Every 15 seconds
last_db_post_time = now_ms
try:
payload = {
"room_id": CURRENT_ROOM_ID,
"location": {
"type": "Point",
"coordinates": [CURRENT_LNG, CURRENT_LAT]
},
"db": float(db)
}
# Convert ws url from ws://ip:port/ws/voice to http://ip:port/api/study-rooms
http_url = WS_URL.replace("ws://", "http://").replace("/ws/voice", "/api/study-rooms")
import urequests
res = urequests.post(http_url, json=payload)
res.close()
except Exception as e:
print("Failed to post db data:", e)
except Exception as main_e:
pass
time.sleep(0.02)