View: 3150|Reply: 1

[OrangePiZero2W] 2.13inch Touch e-Paper

[Copy link]

2

threads

4

posts

52

credits

Registered member

Rank: 2

credits
52
Published in 2023-11-29 06:45:02 | Show all floors |Read mode
This post was finally edited by aksyde at 2023-11-29 06:53

Hi!

Has anyone succeed to play with this ePaper screen

https://www.waveshare.com/wiki/2.13inch_Touch_e-Paper_HAT_Manual#python

on the orange pi zero 2W ?

I have download the required files, and install all required pip package.
I have also set the proper permission to gpio/spi/i2c, following this

https://forum.up-community.org/discussion/2141/solved-tutorial-gpio-i2c-spi-access-without-root-permissions

but i still get

  1. [Errno22] Invalid argument
Copy code
which, as far as I understand, seems to be related to this kind of error
  1. orangepi@orangepizero2w ~ echo 3 > /sys/class/gpio/export
  2. write: Invalid argument</div>
Copy code
as a MWE i tried


  1. <div>import OPi.GPIO as GPIO
  2. import time
  3. #We need this
  4. from os import geteuid

  5. # Pin Definitions:
  6. ledPin = 4

  7. # Pin Setup:
  8. GPIO.setmode(GPIO.BCM)
  9. GPIO.setup(ledPin, GPIO.OUT) # LED pin set as output
  10. #If we're not root, sleep 100ms in order for udev to set
  11. #the permissions on the exported GPIO right
  12. if(geteuid() > 0):
  13.         time.sleep(0.1)

  14. print("Here we go! Press CTRL+C to exit")
  15. try:
  16.         while 1:
  17.                 GPIO.output(ledPin, GPIO.HIGH)
  18.                 time.sleep(0.5)
  19.                 GPIO.output(ledPin, GPIO.LOW)
  20.                 time.sleep(0.5)
  21. except KeyboardInterrupt: # If CTRL+C is pressed, exit cleanly:
  22.         GPIO.cleanup() # cleanup all GPIO</div>
Copy code


but i get
  1. OSError: [Errno 22] Invalid argument

  2. During handling of the above exception, another exception occurred:

  3. Traceback (most recent call last):
  4.   File "/tmp/test.py", line 11, in <module>
  5.     GPIO.setup(ledPin, GPIO.OUT) # LED pin set as output
  6.     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  7.   File "/home/orangepi/code/venv/lib/python3.11/site-packages/OPi/GPIO.py", line 480, in setup
  8.     raise e                           
  9.   File "/home/orangepi/code/venv/lib/python3.11/site-packages/OPi/GPIO.py", line 472, in setup
  10.     sysfs.export(pin)
  11.   File "/home/orangepi/code/venv/lib/python3.11/site-packages/OPi/sysfs.py", line 37, in export
  12.     with open(path, "w") as fp:
  13. OSError: [Errno 22] Invalid argument
Copy code
many thanks!


97

threads

242

posts

921

credits

Senior member

Rank: 4

credits
921
Published in 2024-2-22 16:50:33 | Show all floors
Treten Sie mit   VapeCenterPro   in die Zukunft des Dampfens ein! Dieses hochmoderne Online-Ziel bietet eine kuratierte Auswahl an erstklassigen E-Zigaretten-Produkten und Zubehör. Entdecken Sie ein umfangreiches Sortiment an Premium-E-Liquids, hochmodernen Verdampfergeräten und stilvollem Zubehör, das sowohl für Anfänger als auch für erfahrene Enthusiasten maßgeschneidert ist. VapeCenterPro legt Wert auf Qualität und stellt sicher, dass jedes Produkt den höchsten https://www.vapecenterpro.com/     Standards entspricht. Mit einer benutzerfreundlichen Oberfläche und Expertenempfehlungen war die Navigation in der Welt des Dampfens noch nie so reibungslos. Steigern Sie Ihr Dampferlebnis, entdecken Sie die neuesten Trends und genießen Sie außergewöhnlichen Kundenservice – alles auf Knopfdruck. Willkommen an der Spitze der E-Zigaretten-Innovation mit VapeCenterPro!
You need to log in before you can reply login | Register

Points Rule

Quick reply Top Return list