Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eugenedakin/lgpio-smalldcmotorcontrol
Uses the libgpiod library to control a small Direct Current motor with Raspberry Pi 4 or 5
https://github.com/eugenedakin/lgpio-smalldcmotorcontrol
electronics gpio lgpio raspberry-pi raspberrypi xojo
Last synced: 7 days ago
JSON representation
Uses the libgpiod library to control a small Direct Current motor with Raspberry Pi 4 or 5
- Host: GitHub
- URL: https://github.com/eugenedakin/lgpio-smalldcmotorcontrol
- Owner: eugenedakin
- License: mit
- Created: 2024-07-15T15:28:46.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-15T07:34:57.000Z (about 1 month ago)
- Last Synced: 2024-11-13T20:08:58.489Z (7 days ago)
- Topics: electronics, gpio, lgpio, raspberry-pi, raspberrypi, xojo
- Language: Xojo
- Homepage:
- Size: 96.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lgpio-SmallDCMotorControl
Uses the libgpiod library to control a small Direct Current motor with Raspberry Pi 4 or 5The Raspberry Pi can deliver a small amount of current and voltage to power light circuits. Using the internal power of the Raspberry Pi to provide too much amperage or voltage to a motor can cause issues such as: 1) destroying a chip on the Raspberry Pi motherboard, 2) cause the power surge to reboot the Raspberry Pi, or 3) corrupt the OS or program due to low voltage. The way to prevent this from occurring is to use a transistor.
![](https://github.com/eugenedakin/lgpio-SmallDCMotorControl/blob/main/NPNMotorScreenGrab.png)
The lgpio library can be installed Raspberry Pi OS (6 July 2023) and instructions are available at http://abyz.me.uk/lg/download.html
Install instructions are:
1) install Raspberry Pi OS (64-bit)
2) Open a terminal and type the following commands:
3) sudo apt install swig python3-dev
4) sudo apt install python3-setuptools
5) sudo apt-get install libunwind8
6) wget https://github.com/joan2937/lg/archive/master.zip
7) unzip master.zip
8) cd lg-master
9) make
10) sudo make install
11) create a Motor example program and copy the program and libraries to the RaspberryPi Desktop
12) give the executable permission to run with something like: 'sudo chmod +x NPNMotor'
13) run the program with something like: 'sudo ./NPNMotor'![](https://github.com/eugenedakin/lgpio-SmallDCMotorControl/blob/main/SchematicNPNMotor.png)