pybkick 0.0.2

Creator: railscoderz

Last updated:

Add to Cart

Description:

pybkick 0.0.2

pybkick=======Push software to a pyboard quickly, without using USB Mass Storage mode.Rationale---------Pyboards are small microcomputers which can execute code written in Micropython, which is a Python3compatible language which includes a small subset of the Python3 standard library. The suggest way to deploy code to a PyBoard is to mount it as a USB Mass Storage device, and then editfiles directly on the device, or simply copy over the relevant files from a PC. This approach canbe problematic because if the device is reset, it can cause the Mass Storage drive to be suddenlyunmounted. At best this will cause confusion in the operating system.Further problems can occur if the device needs to be factory reset - this will wipe the code on the deviceand will require everything to be re-copied, or possibly loosing work.In short, using USB Mass Storage mode is a real pain. It would be much simpler to have something that was ableto use the Serial mode connection to quickly copy code across without any kind of stateful connection. Thatis the goal of this project. Installation------------Install using pip: pip install pybkickBasic usage-----------In this example, all my micropython code is in a single, flat directory called 'mpy' which is in the same directoryas the script containing the following code: from pybkick import kick kick( # How do we connect to the pyboard? port='/dev/ttyACM0', # Which files should we copy to the pyboard? src=os.path.join(dirname(__file__), 'mpy'), )Advanced usage--------------In your setup.py file, add 'pybkick' to install_requires. You can also add a script which calls the kick function as an entry point. This willcreate a command-line utility that can automatically deploy your project to the pyboard.Limitations-----------The kick function can only copy flat directories of files into the root directory of the pyboard. It cannotcurrently handle heirarchical directories or

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.