36 lines
876 B
Python
36 lines
876 B
Python
# SPDX-FileCopyrightText: 2023 Tim C for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
import adafruit_connection_manager
|
|
import board
|
|
import digitalio
|
|
from adafruit_wiznet5k.adafruit_wiznet5k import WIZNET5K
|
|
|
|
from adafruit_httpserver import Request, Response, Server
|
|
|
|
# For Adafruit Ethernet FeatherWing
|
|
cs = digitalio.DigitalInOut(board.D10)
|
|
|
|
# For Particle Ethernet FeatherWing
|
|
# cs = digitalio.DigitalInOut(board.D5)
|
|
|
|
spi_bus = board.SPI()
|
|
|
|
# Initialize ethernet interface with DHCP
|
|
eth = WIZNET5K(spi_bus, cs)
|
|
|
|
pool = adafruit_connection_manager.get_radio_socketpool(eth)
|
|
|
|
server = Server(pool, "/static", debug=True)
|
|
|
|
|
|
@server.route("/")
|
|
def base(request: Request):
|
|
"""
|
|
Serve a default static plain text message.
|
|
"""
|
|
return Response(request, "Hello from the CircuitPython HTTP Server!")
|
|
|
|
|
|
server.serve_forever(str(eth.pretty_ip(eth.ip_address)))
|