Skip to content

Commit b767c6e

Browse files
authored
Merge pull request #10 from gurgleapps/dev
Dev
2 parents 5be5b19 + c0941c3 commit b767c6e

29 files changed

+1720
-160
lines changed

.github/workflows/mpy_compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
rm -rf mpy
4040
mkdir mpy
41-
find . -maxdepth 1 -name "*.py" ! -name "main.py" ! -name "config.py" -exec sh -c './micropython/mpy-cross/build/mpy-cross {} -o mpy/$(basename -s .py {}).mpy' \;
41+
find src/. -maxdepth 2 -name "*.py" ! -name "main.py" ! -name "config.py" -exec sh -c './micropython/mpy-cross/build/mpy-cross {} -o mpy/$(basename -s .py {}).mpy' \;
4242
4343
4444

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
src/config.local.py
2+
build/node_modules
3+
.DS_Store

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,19 @@ The latest features include improved memory usage, support for additional microc
1111
- Serve static and dynamic web pages from your Raspberry Pi Pico
1212
- Run Python functions on your microcontroller device from a web browser
1313
- Create dynamic web pages with live data from your Pico or other Microcontroller
14+
- Run as ACcess Point (AP) or connect to your Wi-Fi network
1415
- Blink the IP address using the built-in LED, handy when you're out in the field with no screen or computer
1516
- Display a file and folder list of your root directory with an attractive and responsive user interface
1617
- End-to-end examples showcasing various functionalities
1718
- Easily customizable codebase
19+
- Support for ESP8266 and ESP32 microcontrollers
20+
1821

1922
## Setup
2023

2124
1. Make sure you have MicroPython on your Pico
2225
2. Clone this repository
23-
3. Copy the code to your Pico
26+
3. Copy the code from the /src folder to your Pico
2427
4. Edit `config.py` with your Wi-Fi details and IP blink options:
2528
- `WIFI_SSID`: Set this to your Wi-Fi network SSID (e.g., `"your_wifi_ssid"`)
2629
- `WIFI_PASSWORD`: Set this to your Wi-Fi network password (e.g., `"your_wifi_password"`)

build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
(cd build && npm run build-css)

0 commit comments

Comments
 (0)