![]() |
RPi.GPIO python module for Pine A64/A64+ - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: PINE A64(+) (https://forum.pine64.org/forumdisplay.php?fid=4) +--- Forum: Pine A64 Hardware, Accessories and POT (https://forum.pine64.org/forumdisplay.php?fid=32) +---- Forum: Pi2, Euler and Exp GPIO Ports (https://forum.pine64.org/forumdisplay.php?fid=34) +---- Thread: RPi.GPIO python module for Pine A64/A64+ (/showthread.php?tid=723) |
RE: RPi.GPIO python module for Pine A64/A64+ - martinayotte - 02-18-2017 (02-18-2017, 06:49 AM)JasperBrown Wrote: - pip(ed) the Rasp.Pi GPIO Whit the above line, you seem to try to compile RaspberryPi version, not the A64. RE: RPi.GPIO python module for Pine A64/A64+ - dkryder - 02-19-2017 no one has mentioned the script, create_gpio_user_permissions.py is there some criteria by which this script should [or should not] be run? it seems like maybe it should be run but maybe it is called from another install script? thanks. RE: RPi.GPIO python module for Pine A64/A64+ - JasperBrown - 02-19-2017 (02-18-2017, 12:16 PM)martinayotte Wrote: Whit the above line, you seem to try to compile RaspberryPi version, not the A64. After Code: sudo python setup.py install You just had ran the setup.py and it worked? RE: RPi.GPIO python module for Pine A64/A64+ - martinayotte - 02-20-2017 After getting the git, yes, only "python setup.py install" is required. RE: RPi.GPIO python module for Pine A64/A64+ - JasperBrown - 02-21-2017 Which system image did you use? RE: RPi.GPIO python module for Pine A64/A64+ - MarkHaysHarris777 - 02-22-2017 (02-21-2017, 04:43 AM)JasperBrown Wrote: Which system image did you use? If you meet us on irc chat we can help you in real time; often its faster with less confusion. ![]() see below for chat room details RE: RPi.GPIO python module for Pine A64/A64+ - martinayotte - 02-23-2017 (02-21-2017, 04:43 AM)JasperBrown Wrote: Which system image did you use? Armbian Mainline 4.10, but months ago, I was using longsleep and it was working there too. RE: RPi.GPIO python module for Pine A64/A64+ - psychedup - 09-01-2017 Has anybody used this library for I2C? I got my first I2C device recently, this temp/pressure sensor. I tried reading it from an ESP8266 and an arduino first and didn't have any luck, so I decided to give it a try on the pine64. It shows up on i2cdetect, and if I run "sudo i2cdump twi1 0x76" it dumps a bunch of data, so I'm guessing it's wired up right. I saw in the notes in github that this library has I2C "borrowed from pyA20", so a little googling found me some documentation here (you have to scroll a bit to get to the I2C info). From that info, I put together this python script: Code: #!/usr/bin/env python3 Now when I run this (as root) using python3, I get this error: Code: Traceback (most recent call last): I tried changing the first line to use python2 instead of python3, and then I get this error instead: Code: Traceback (most recent call last): Any idea what I'm doing wrong? RE: RPi.GPIO python module for Pine A64/A64+ - martinayotte - 09-03-2017 Are you using the library from https://github.com/swkim01/RPi.GPIO-PineA64 ? I've verified it with both python2.7 and python 3.5 under Armbian, and it is working with both. RE: RPi.GPIO python module for Pine A64/A64+ - psychedup - 09-03-2017 Yes, that's the one. So far I've just used it to blink LED's. This is my first attempt at trying to work with I2C. I wonder if there's some sample code that I could look at somewhere. |