{ "info": { "author": "Daniel Castelli", "author_email": "danc@alleninstitute.org", "bugtrack_url": null, "classifiers": [], "description": "\n# PyTic v0.0.4 \n\n![pololu tic](images/pololu_tic.png)\n\n---\n\n## Introduction\n\n`PyTic` is an object-oriented Python wrapper for the Pololu Tic stepper driver series. The wrapper interacts with the stepper driver device using the API described in the [Pololu-Tic-Software][pololu_tic_software] GitHub page using the ctypes library. The device comunication protocol is USB.\n\n---\n\n## Installation\n\n### Prerequisites\n\n`PyTic` requires the [Tic Software and Drivers for Windows][tic_drivers_win] msi provided by Pololu to be installed as a prerequisite. Other operating system drivers can be found on the [Pololu Tic Resources][tic_resources], but are not currently supported by this Python package.\n\n\n### Pip Install\n\nTo install the `PyTic` package on a Windows machine equipped with Python 2.7 or higher, run the following `pip` command:\n\n```console\nC:\\> pip install pytic\n```\n\n* Note: Only Windows x64 machines are supported at this time.\n\n---\n\n\n## Package Architecture\n\n`PyTic` encompasses almost all functionality present in the original C-API with some additional features. The __Pololu Tic Stepper Driver__ is represented in Python using the `pytic.PyTic()` object. \n\n```console\n----------------------------------\n| Package Relation Tree |\n----------------------------------\n\nPyTic [Tic Object]\n |-- Settings [Structure Interface Object]\n |- Pin Settings [Structure Interface Object] [List]\n |-- Variables [Structure Interface Object]\n |- Pin Info [Structure Interface Object] [List]\n |-- Logger [Notification]\n\nPyTic_Protocol [Module]\n |-- Tic Constants [Dictionary]\n```\n\n### PyTic Protocol (C-Constants Dictionary)\n\n\nThe __Pololu Tic C-API__ uses `CAPS_DEFINED_CONSTANTS` for setting many of its parameters that represent an integer value. These contants set parameters such as pin function, step mode, etc. The `PyTic` package auto-imports these values from the [tic_protocol.h][tic_protocol_h] header file and stores them in a Python dictionary named `tic_constants` in the `pytic_protocol` module. See [Using Settings](#using_settings) in the [Example Code](#example_code) section to see how to use this dictionary in contect.\n\n### Error Handling\n\nAll __Pololu Tic C-API__ functions when dynamically imported into `PyTic` are wrapped in a higher-order function error handler called `TED()`, short for __[T]ic [E]rror [D]ecoder__. `TED()` will make all Tic wrapped functions return 0 from a successful call and 1 from a call that generated an error. In addition, `TED()` performs low-level bit mask decoding and writes the enumerated error value to the `PyTic` object internal log. This log can be output the ther terminal or file using the standard [logging][logging_lib] library.\n\n---\n\n## Example Code\n\n\nOutlined in this section are several examples of how to use `PyTic` to control a __Pololu Tic Stepper Driver__. The objective of this section is to show the `PyTic` syntax used to implement the __Pololu Tic Stepper Driver C-API__ as opposed to detail each of the available functions. For a full list of commands, settings, and variable information please refer to either the [Pololu Tic Manual][pololu_tic_manual], the [Pololu Tic C-API][tic_h], or this package's source code.\n\n### Simple Program\n\n\nThe simple program below demonstrates how to connect to a __Pololu Tic Stepper Driver__ device over USB and move to several positions after the previous position has been reached.\n\n```python\nimport pytic\nfrom time import sleep\n\n# - Initialization -------------------------------------------\n\ntic = pytic.PyTic()\n\n# Connect to first available Tic Device serial number over USB\nserial_nums = tic.list_connected_device_serial_numbers()\ntic.connect_to_serial_number(serial_nums[0])\n\n# Load configuration file and apply settings\ntic.settings.load_config('path\\\\to\\\\config.yml')\ntic.settings.apply() \n\n# - Motion Command Sequence ----------------------------------\n\n# Zero current motor position\ntic.halt_and_set_position(0)\n\n# Energize Motor\ntic.energize()\ntic.exit_safe_start()\n\n# Move to listed positions\npositions = [1000, 2000, 3000, 0]\nfor p in positions:\n tic.set_target_position(p)\n while tic.variables.current_position != tic.variables.target_position:\n sleep(0.1)\n\n# De-energize motor and get error status\ntic.enter_safe_start()\ntic.deenergize()\nprint(tic.variables.error_status)\n```\n\n* Note: Modified settings will not take effect until `PyTic.settings.apply()` method is called. This is to avoid unnecessary writes to non-volitile memory.\n\n### Using Settings\n\n\nThe `PyTic.settings` structure interface object is used to alter device settings stored in non-volitile memory. As detailed above in [PyTic Protocol](#pytic_protocol), some of these settings have enumerated constants to maintain a user-friendly interaction. The code sample below demonstrates how to interact with `PyTic.settings` using the `tic_constant` dictionary. To avoid unnecissary writes to non-volitile memory, the `PyTic.settings.apply()` function must be called for the new settings to take effect.\n\n```python\n\n# ... assume PyTic object initialized and connected to device as 'tic'\n\n# Load Tic Constant Dictionary\ntc = pytic.pytic_protocol.tic_constant\n\n# Modify individual properties of composite settings object\ntic.settings.product = tc['TIC_PRODUCT_T825']\ntic.settings.step_mode = tc['TIC_STEP_MODE_MICROSTEP16']\n\n# Turn the Serial RX Pin into a generic digital user input\npin = tc['TIC_PIN_NUM_RX']\ntic.settings.pin_setting[pin].func = tc['TIC_PIN_FUNC_USER_INPUT']\ntic.settings.pin_setting[pin].pullup = True\n\n# Required to burn new settings to Tic non-volitile memory\ntic.settings.apply()\n\n```\n\n\n\n\n---\n## Logging\n\n`PyTic` uses the `logging` package to display Tic status messages. The default logging level is `logging.DEBUG`. For less verbose logging, set `PyTic.log_level = logging.CRITICAL`. The log name is `PyTic` for users that would like to have a parent-object handle the logging information.\n\n\n---\n## Example YAML Configuration File\n\n`PyTic` settings can be set invidually using the `PyTic.settings` structure interface in the script or all-at-once using a YAML config file and the `PyTic.settings.load_config('\\\\path\\\\to\\\\config.yml')` function. Here is an example YAML config file with some usage notes,\n\n```yaml\ntic_settings: # required header for load_config fcn.\n product: TIC_PRODUCT_T825 \n auto_clear_driver_error: True # ** These 4 settings **\n ignore_err_line_high: True # ** were experimentally **\n serial_crc_enabled: False # ** determined to stabalize **\n command_timeout: 0 # ** device performance **\n max_speed: 180000000 # pulses/s * 10^-4\n starting_speed: 0 # pulses/s * 10^-4\n max_accel: 9000000 # pulses/s^2 * 10^-2\n max_decel: 9000000 # pulses/s^2 * 10^-2\n step_mode: TIC_STEP_MODE_MICROSTEP16 \n current_limit: 640 # mA, Only select values acceptable, See notes.\n decay_mode: TIC_DECAY_MODE_T825_FAST \n pin_settings: # Ex. Modifying Default Pin Fcn.\n - pin_num: TIC_PIN_NUM_RX\n func: TIC_PIN_FUNC_USER_INPUT\n pullup: True\n analog: False\n # - pin_id: TIC_PIN_NUM_TX # ... modifying a 2nd pin ...\n # func: TIC_PIN_FUNC_USER_INPUT\n # polarity: True\n # analog: False\n```\n\nNotes:\n* `CAPS_DEFINED_CONSTANTS` are keys for the `tic_constant` dictionary located in `pytic_protocol.py`. Refer to section [Using Settings](#using_settings) for more details on the dictionary and its use. \n* `current_limit` only accepts select values detailed in the [Pololu Tic Manual][pololu_tic_manual]\n\n \n---\n\n## Dependencies\n\nDependencies include the following,\n\n* PyYAML\n\n---\n\n## Level of Support Notice\n\nThis code is currently not supported. It is being released to the community AS IS without any guarantee of support. The community is welcome to submit issues, but should not expect an active response.\n\n---\n\n## External Resources\n\nExternal resources include the following,\n\n* [logging Library][logging_lib]\n* [Pololu-Tic-Software GitHub][pololu_tic_software]\n* [Pololu Tic Manual][pololu_tic_manual]\n* [Pololu Tic Resources][tic_resources]\n* [tic.h][tic_h]\n* [tic_protocol.h][tic_protocol_h]\n* [Tic Software and Drivers for Windows][tic_drivers_win]\n\n[pololu_tic_software]: https://github.com/pololu/pololu-tic-software\n[pololu_tic_manual]: https://www.pololu.com/docs/0J71\n[logging_lib]: https://docs.python.org/3/library/logging.html\n[tic_protocol_h]: https://github.com/pololu/pololu-tic-software/blob/a75c204a2255554e21cc5351c528d930ba5d2c38/include/tic_protocol.h\n[tic_drivers_win]: https://www.pololu.com/file/0J1325/pololu-tic-1.6.2-win.msi\n[tic_resources]:https://www.pololu.com/product/3131/resources\n[tic_h]: https://github.com/pololu/pololu-tic-software/blob/master/include/tic.h", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/AllenInstitute/pytic", "keywords": "PyTic Pololu Tic Stepper Controller Wrapper", "license": "Allen Institute Software License", "maintainer": "", "maintainer_email": "", "name": "PyTic", "package_url": "https://pypi.org/project/PyTic/", "platform": "", "project_url": "https://pypi.org/project/PyTic/", "project_urls": { "Homepage": "https://github.com/AllenInstitute/pytic" }, "release_url": "https://pypi.org/project/PyTic/0.0.4/", "requires_dist": null, "requires_python": "", "summary": "An object-oriented Python wrapper for Pololu Tic Stepper Controllers.", "version": "0.0.4" }, "last_serial": 4928095, "releases": { "0.0.3": [ { "comment_text": "", "digests": { "md5": "401a51c73594c12f40e201e130a33853", "sha256": "e0b3f8b5da545a681d97b418c47edb19a2d991b4237aac408d86de94a4597ae8" }, "downloads": -1, "filename": "PyTic-0.0.3.tar.gz", "has_sig": false, "md5_digest": "401a51c73594c12f40e201e130a33853", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 433308, "upload_time": "2018-08-06T23:01:35", "url": "https://files.pythonhosted.org/packages/e1/58/5953719ea3382c704b80043236665e11a71a588593d4f45c918533eac2a6/PyTic-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "3783dbc2d3937022cfef553813eef88c", "sha256": "af6522094b8f40b7d2220575dfb5675508acf333defb8aae41e0ff6d56851304" }, "downloads": -1, "filename": "PyTic-0.0.4.tar.gz", "has_sig": false, "md5_digest": "3783dbc2d3937022cfef553813eef88c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 435832, "upload_time": "2018-08-07T17:28:21", "url": "https://files.pythonhosted.org/packages/99/ba/e91bd95b537713914aa945c0055da2473e18831c985a8a5cc519920c27be/PyTic-0.0.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3783dbc2d3937022cfef553813eef88c", "sha256": "af6522094b8f40b7d2220575dfb5675508acf333defb8aae41e0ff6d56851304" }, "downloads": -1, "filename": "PyTic-0.0.4.tar.gz", "has_sig": false, "md5_digest": "3783dbc2d3937022cfef553813eef88c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 435832, "upload_time": "2018-08-07T17:28:21", "url": "https://files.pythonhosted.org/packages/99/ba/e91bd95b537713914aa945c0055da2473e18831c985a8a5cc519920c27be/PyTic-0.0.4.tar.gz" } ] }