Skip to content

Files

This branch is 2 commits ahead of, 291 commits behind OpenStickCommunity/GP2040-CE:main.

www

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 21, 2023
Jun 18, 2023
Dec 29, 2023
Dec 29, 2023
Dec 19, 2023
Dec 7, 2023
May 15, 2023
Nov 6, 2023
Dec 19, 2023
Jun 14, 2023
Nov 28, 2023
Dec 27, 2023
Dec 27, 2023
Jun 14, 2023

GP2040-CE Web Configurator

Simple web application for gamepad configuration.

Requirements

  • NodeJS and NPM to build the React app

Development

Mocked board

Run npm run dev. This will start up the React app and an Express instance for mock data during development, allowing testing of the configurator without loading it onto the MCU, which is a SLOW process.

The mock data Express server is running at http://localhost:8080.

Connected board

Run npm run dev-board. This will start up the React app and try connect to the board running the web-configurator.

API Endpoints

When adding a new API endpoint to the GP2040-CE Configurator:

NOTE: All endpoints should be under the /api path

  • Add the endpoint to src/webserver.cpp.
    • Add a define at the top: #define API_GET_NEW_ENDPOINT "/api/getNewEndpoint"
      • Use the naming convention API_[GET/SET]_{ENDPOINT_PATH} for the define
      • Use the naming convention /api/{[get/set]EndpointPath} for the path
    • Create the backing method with the same name as the API path: string getNewEndpoint()
    • Add handling code in fs_open_custom for the API path
  • Add a mock data endpoint to src/server/app.js
  • Add the client-side API function to www/src/Services/WebApi.js.
  • Add the endpoint to the Postman collection at www/server/docs/GP2040-CE.postman_collection.json

Files

Use JPG and PNG files for images, SVG file support requires modification to the lwIP library that hasn't been completed.

Building

If you just want to rebuild the React app in production mode for some reason, you can run npm run build from the www folder.

The makedatafs.js script is used to build the React application and regenerate the embedded data in lib/httpd/fsdata.c. The makefsdata tool that performs the conversion doesn't set the correct #include lines for our use. This script will fix this issue.

Precompiled binaries of makedatafs for Windows, Linux and macOS are included in the tools folder.

References

Original example:

Convert text to bytes:

Create image map: