-
Notifications
You must be signed in to change notification settings - Fork 0
Python API
Alejandro Olvera edited this page Oct 27, 2017
·
3 revisions
The possibility of a python EV3 programming GUI suggest research into methods for interfacing with the EV3 hardware with Python's C API. To provide python functionality, it will be essential to build the necessary wrapping, module definitions, and module initialization to provide easy accessibility to the EV3s' C APIs.
A general overview of the entire Python/C API can be found at this reference page. A quick overview of implementation can be found here. This page demonstrates function wrapping, module definitions, and module initialization.