Example for the command interpreter.
This is an example Python application, using the python library libosplink
to communicate with the OSPlink firmware in the ESP32S3. It only uses the
basic command interpreter, not the commands of OSPlink.
libosplink
is still experimental.
This application uses the following support files
setup.bat
first file to run, sets up a virtual Python environment. You might need to tweak the line that sets theLOCATION
of the python executable.requirements.txt
is used bysetup.bat
to install packages. In this case, the file contains the serial port library and the libosplink.run.bat
actually runsexcmdint.py
.excmdint.py
the script started byrun.bat
.clean.bat
deletes the virtual environment.readme.md
this file.
-
Make sure the (ESP on the) OSP32 board is flashed with the osplink.ino sketch.
-
Connect an OSP chain to the OSP32 board (eg SAIDbasic in BiDir).
-
Connect the OSP32 board to the PC.
-
Open a cmd in
OSP_aocmd\python\excmdint
. -
Run
setup.bat
(check the lineSET LOCATION=C:\programs\python311\
).
Once the project is configured, run the python app.
We do this via the run.bat
.
Make sure Arduino IDE (or any other app to blocks the COM port) is not running.
scanning for COM ports...
found ['COM7']
opening COM7
exec('echo line Hello, world!')
-> Hello, world!
exec('echo faults')
-> echo: faults: 0
logging
see __cmdint.log
Done
Run OSP_aocmd\python\cleanall.bat
to remove all generated files.
(end)