Replies: 2 comments 1 reply
-
|
Hello, On BG95-M3 with QuecPython, the configuration (APN, server, credentials, etc.) is stored as a Python or JSON file on the module's filesystem, and the application reads it at boot. To update it, you write to the file using standard Python file functions and reboot. Two examples from our reference projects:
Let me know if you need more details. |
Beta Was this translation helpful? Give feedback.
-
|
Yes, you're absolutely correct. The device typically comes preloaded with a SIM detection mechanism (e.g., based on ICCID, IMSI, or SPN) that allows it to identify the installed SIM card at boot time. Once detected, the system can look up the corresponding APN and other configuration parameters from a local file (such as a JSON or XML config file stored in the filesystem). |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
In planning my first sensor written in QuecPython and running on a BG95-M3 I need to create a way to do the initial configuration of the sensor. Here is how I do this with ESP32-based WiFi sensors:
With a BG95-M3, I'm trying to determine how I would configure the device when there is no WiFi or Bluetooth to use for connectivity. I don't want to add an ESP32 just for configuration.
How are other customers performing this initial configuration? For example, I can't even connect to cellular without the user providing the APN and several other parameters.
Thoughts?
Beta Was this translation helpful? Give feedback.
All reactions