2022-06-06 19:54:02 -04:00
|
|
|
Environment Variables
|
|
|
|
=====================
|
|
|
|
|
|
|
|
CircuitPython 8.0.0 introduces support for environment variables. Environment
|
|
|
|
variables are commonly used to store "secrets" such as Wi-Fi passwords and API
|
|
|
|
keys. This method *does not* make them secure. It only separates them from the
|
|
|
|
code.
|
|
|
|
|
|
|
|
CircuitPython supports these by mimicking the `dotenv <https://github.com/theskumar/python-dotenv>`_
|
|
|
|
CPython library. Other languages such as Javascript, PHP and Ruby also have
|
|
|
|
dotenv libraries.
|
|
|
|
|
|
|
|
These libraries store environment variables in a ``.env`` file. Here is a simple
|
|
|
|
example:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
KEY1='value1'
|
|
|
|
# Comment
|
|
|
|
KEY2='value2
|
|
|
|
is multiple lines'
|
|
|
|
|
|
|
|
CircuitPython uses the ``.env`` at the drive root (no folder) as the environment.
|
|
|
|
User code can access the values from the file using `os.getenv()`. It is
|
|
|
|
recommended to save any values used repeatedly in a variable because `os.getenv()`
|
|
|
|
will parse the ``/.env`` on every access.
|
|
|
|
|
|
|
|
CircuitPython behavior
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
CircuitPython will also read the environment to configure its behavior. Other
|
|
|
|
keys are ignored by CircuitPython. Here are the keys it uses:
|
|
|
|
|
2022-07-14 14:31:53 -04:00
|
|
|
CIRCUITPY_BLE_NAME
|
|
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
Default BLE name the board advertises as, including for the BLE workflow.
|
|
|
|
|
2022-08-02 08:10:51 -04:00
|
|
|
CIRCUITPY_RESERVED_PSRAM
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
On boards with Espressif microcontrollers with PSRAM (also called SPIRAM), permanently reserve a portion of PSRAM for use by esp-idf.
|
|
|
|
This storage is removed from the CircuitPython "heap" and is available for allocation by esp-idf routines in the core instead.
|
|
|
|
Generally, only set this to a non-zero value when it is required by a specific core module.
|
|
|
|
|
2022-07-14 14:31:53 -04:00
|
|
|
CIRCUITPY_WEB_API_PASSWORD
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Password required to make modifications to the board from the Web Workflow.
|
|
|
|
|
2022-07-13 19:51:01 -04:00
|
|
|
CIRCUITPY_WEB_API_PORT
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
TCP port number used for the web HTTP API. Defaults to 80 when omitted.
|
|
|
|
|
2022-06-06 19:54:02 -04:00
|
|
|
CIRCUITPY_WIFI_PASSWORD
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
2022-07-14 14:31:53 -04:00
|
|
|
Wi-Fi password used to auto connect to CIRCUITPY_WIFI_SSID.
|
2022-06-06 19:54:02 -04:00
|
|
|
|
|
|
|
CIRCUITPY_WIFI_SSID
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
Wi-Fi SSID to auto-connect to even if user code is not running.
|