Skip to content

k1zmt/magloop-tuner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Magloop Controller

Behavior

Connect to your Wi-Fi and open the IP address of the magloop in your browser.

See video
Watch the video

Development

Initializing the project

platformio project init --board esp32dev --ide clion

Flash the firmware

Before you flash you need to setup your wifi access point SSID and password

export WIFI_SSID=YourWiFiSSID
export WIFI_PASSWORD=YourWiFiPassword

Now you can program the ESP

pio run --target=upload -e ota

Build

  • go to the directory of this project
  • open a terminal
  • build with : pio run (first time is long because it needs to download all the requirements)
  • upload to the board (needs the borad connected using USB + appropriate user settings see installation) : pio run --target upload
  • See the Serial output : pio device monitor --baud 115200