https://github.com/sdtelectronics/lptgpio
Using parallel port as GPIO with mbed-like API
https://github.com/sdtelectronics/lptgpio
Last synced: over 1 year ago
JSON representation
Using parallel port as GPIO with mbed-like API
- Host: GitHub
- URL: https://github.com/sdtelectronics/lptgpio
- Owner: SdtElectronics
- Created: 2020-06-10T14:49:19.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-11T10:45:19.000Z (about 6 years ago)
- Last Synced: 2025-02-16T05:16:04.992Z (over 1 year ago)
- Language: C++
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mbed-GPIO-Style Parallel Port Driver
Control parallel port signals separately with mbed-like API.
```
#include "parIO.h"
parO d0(parO::D0);
parI pe(parI::PE);
d0 = 0;
int peVal = pe;
```
Parallel port signals name:

Please also refer to signal enumerates in the header.