Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

SoftAP Fix

This script is used to fix Notecard (NOTE-ESP) devices that are missing the assets required to run SoftAP. This Script should only be run against ESP32-based Wi-Fi Notecards and not Cell+WiFi or legacy Notecards.

Requirements

  • Python 3

Usage

  1. Make sure you are running Notecard Firmware (7.4.2 or later). Visit blues.dev for upgrade instructions.

  2. Connect the Notecard to your machine via USB (Serial).

  3. From a command line, change to the directory containing this README.md.

  4. Run the instructions below:

    1. LINUX ONLY: Create a python virtual environment
    sudo apt install python3 python3-venv
    python3 -m venv blues-env
    source blues-env/bin/activate
    1. Install requirements and execute the script
    pip install -r requirements.txt
    python main.py

    NOTE: By DEFAULT this script attempts to identify which serial port the Notecard is connected. If it cannot detect which serial port to use, you may need to specify which serial port. If the script is unable to detect the correct port, then you may manually specify the correct port

    1. LINUX ONLY: Exit the virtual environment
    deactivate

Specify Serial Port (OPTIONAL)

To specify which serial port to use for communicating with the Notecard, use the following syntax:

python main.py -p <port-id>

where <port-id> is the name of the serial port on your operating system.