Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jklmnn/wiringpi-ada
Ada bindings for wiringPi
https://github.com/jklmnn/wiringpi-ada
ada raspberry-pi raspberrypi wiring-pi wiringpi wiringpi-library
Last synced: about 2 months ago
JSON representation
Ada bindings for wiringPi
- Host: GitHub
- URL: https://github.com/jklmnn/wiringpi-ada
- Owner: jklmnn
- License: lgpl-3.0
- Created: 2018-08-28T13:09:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-01T20:15:00.000Z (over 6 years ago)
- Last Synced: 2024-07-31T20:45:30.816Z (5 months ago)
- Topics: ada, raspberry-pi, raspberrypi, wiring-pi, wiringpi, wiringpi-library
- Language: Ada
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wiringPi-Ada
This project provides Ada bindings for the [wiringPi](http://wiringpi.com/) GPIO library.
The bindings are not complete, currently supported functions are
- Pi:
- wiringPiSetup
- wiringPiSetupGpio
- wiringPiSetupPhys
- pinMode
- digitalWrite
- digitalRead
- Serial
- serialOpen
- serialClose
- serialPutchar
- serialPuts
- serialDataAvail
- serialGetchar
- serialFlush## Build
### Shared library
`gprbuild -p -P wiringPi.gpr`
### Example
### GPIO
`cd example && gprbuild -P gpio.gpr && ./gpio`
### Serial
`cd example && gprbuild -P serial.gpr && ./serial `