Metadata-Version: 2.1
Name: ElegooSmartCarController
Version: 0.1.0
Summary: A Python library to control Elegoo Smart Car V4
Home-page: https://github.com/yourgithub/ElegooSmartCarController
Author: Frederick Feraco
Author-email: frederick.feraco@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown


# ElegooSmartCarController

A Python library to control the Elegoo Smart Car V4.

## Installation

Install ElegooSmartCarController using pip:

```bash
pip install ElegooSmartCarController
```

## Usage

```python
from elegoosmartcarcontroller.car_control import ArduinoCarController

# Initialize the controller
car_controller = ArduinoCarController()

# Example: Move the car forward
car_controller.car_control_no_time_limit("forward", 150)
```
