shenouda
Members-
Content Count
7 -
Joined
-
Last visited
Community Reputation
0 NeutralRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
is it possible to convert a yolov8 model to rknn? or it is not supported on rk3399pro? i know it is possible to convert yolov5 but not sure about yolov8
- 1 reply
-
- object detection
- rknn conversion
-
(and 3 more)
Tagged with:
-
Hi @tooz thank you for your reply. when I try to do import board i get the following error: NotImplementedError: Adafruit-PlatformDetect version 3.40.2 was unable to identify the board and/or microcontroller running the Linux platform. Please be sure you have the latest packages running: 'pip3 install --upgrade adafruit-blinka adafruit-platformdetect' i tried running 'pip3 install --upgrade adafruit-blinka adafruit-platformdetect' but still getting the same error. Do you have any suggestion?
-
can't access GPIO with python periphery library
shenouda replied to shenouda's topic in General Discussion
Found the solution in this tutorial: https://forum.up-community.org/discussion/2141/solved-tutorial-gpio-i2c-spi-access-without-root-permissions- 1 reply
-
- gpio
- python-periphery
-
(and 1 more)
Tagged with:
-
Hi I am new to this forum. I am trying to use python-periphery library to use the pins on the board. if I do : from periphery import GPIO gpio3 = GPIO(3,"in") I get the following error: Traceback (most recent call last): File "/usr/local/lib/python3.7/dist-packages/periphery/gpio.py", line 1017, in _open with open("/sys/class/gpio/export", "w") as f_export: PermissionError: [Errno 13] Permission denied: '/sys/class/gpio/export' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/linaro/Desktop/temp_hum.py", line 7, in <module> gpio3 = GPIO(3,"in") File "/usr/local/lib/python3.7/dist-packages/periphery/gpio.py", line 999, in __init__ self._open(line, direction) File "/usr/local/lib/python3.7/dist-packages/periphery/gpio.py", line 1020, in _open raise GPIOError(e.errno, "Exporting GPIO: " + e.strerror) periphery.gpio.GPIOError: [Errno 13] Exporting GPIO: Permission denied Any Idea how to solve this?
- 1 reply
-
- gpio
- python-periphery
-
(and 1 more)
Tagged with: