So I'm trying to host a web server on my raspberry pi pico, I have a .py script (using micropython btw) on it along with all of the files for the webpage, it loads up index.html but wont load either the js or css, it also wont switch to the other html page. Do I have to somehow load these in the py script as well? I'm pretty new to this kind of stuff but here is the code I got.
The code to connect to js and css is in the html, It works if I just open up the html file, but not if I put it on the pico.
The code to connect to js and css is in the html, It works if I just open up the html file, but not if I put it on the pico.
Code:
import usocket as socketimport network# Set up WiFi connectionssid = 'name'password = 'pass'station = network.WLAN(network.STA_IF)station.active(True)station.connect(ssid, password)print(station.ifconfig()[0])# Wait until connected to WiFiwhile not station.isconnected(): pass# Define function to handle HTTP requestsdef handle_request(client_socket): request = client_socket.recv(1024) print("Request:") print(request) # Send HTTP response with status 200 (OK) and content type text/html response = "HTTP/1.1 200 OK\r\n" response += "Content-Type: text/html\r\n\r\n" try: # Read HTML file and send it as response with open("DaBall/index.html", "r") as f: response += f.read() except OSError: # Handle file not found error response = "HTTP/1.1 404 Not Found\r\n" response += "Content-Type: text/plain\r\n\r\n" response += "404 Not Found" # Encode response as bytes and send it client_socket.send(response.encode('utf-8')) client_socket.close()# Create sockets = socket.socket(socket.AF_INET, socket.SOCK_STREAM)s.bind(('0.0.0.0', 80))s.listen(5)print("Server started")# Accept incoming connections and handle requestswhile True: client, addr = s.accept() print('Got a connection from %s' % str(addr)) handle_request(client)
Statistics: Posted by TheStick — Thu May 09, 2024 1:15 am