Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ftprci

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ftprci

Cross platform fast time python robot interface controller

  • 0.2.13
  • PyPI
  • Socket score

Maintainers
1

FTPRCI

Fast Time Python Robot Controller Interface

Description

This library is a collection of classes and functions to help with the development of robot controllers in Python. It is designed to be fast and easy to use, with a focus on real-time control. Works on CPython and MicroPython.

Installation

To install the library, simply run:

```bash
pip install ftprci
```

Usage

The library is divided into several modules, each with a specific purpose:

  • interface: Contains the Interface class, which is an abstract base class for all interfaces.
  • actuators: Contains the Actuator class, which is an abstract base class for all actuators.
  • estimator: Contains the Estimator class, which is an abstract base class for all estimators.
  • controller: Contains the Controller class, which is an abstract base class for all controllers.
  • sensor: Contains the Sensor class, which is an abstract base class for all sensors.
  • logger: Contains the Logger class, which is used for logging.
  • main: Contains the RunnerThread class, which is used to run the controller with precise timings.

Here is an example of how to use the library:

```python
import ftprci as fci
sensor = fci.LSM6()
controller = fci.PIDController()
estimator = fci.KalmanFilter()
actuator = fci.DCMotor()
th = fci.RunnerThread()
th.callback | sensor.read | estimator.estimate | controller.steer | actuator.command
th.run()

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc