Simple and fast web server that can be downloaded as an executable and run on any computer without python installed. The server can be used to upload code to an arduino connected to the computer.
You can use this server to upload code from a website (POST request) to an arduino connected to a computer. Hence allowing communication between a website and an arduino.
- Download the executable from the releases page
- Run the executable
- Send a post request to the server with the code in the body of the request
- The server will upload the code to the arduino
pyinstaller --onefile --windowed main.py
This will create an executable in the dist folder
this executable can be run on any computer without python installed
To run the executable run: ```.\dist\main\main.exe``` in the src directory
pip install -r requirements.txt
python main.py
In the post request body, add:
{
"code": "code here"
}
Licensed under the MIT License