VIM3 GPIO control from Python

Hello,

I use vim3 and Ubuntu 20.04 server (fenix).

What are the methods of GPIO control? I know that it is possible through
/sys/class/gpio filesystem.

On the RPi we can use:

GPIO.output(BUZZER, True)
sleep(0.1)
GPIO.output(BUZZER, False) , etc

through library.

Is it possible to control GPIO in a similar way (preferably under python
and do not use os.system calls)?

Thank you.

Hello @sergetsp

Please check here:

https://docs.khadas.com/products/sbc/vim3/applications/gpio/wiringpi-python

Thank you very much!