❌

Normal view

There are new articles available, click to refresh the page.
Before yesterdayMain stream

Using GPIO on BeagleY-AI

By: admin
12 December 2024 at 23:24

GPIO stands for General-Purpose Input/Output. It’s a set of programmable pins that you can use to connect and control various electronic components.

You can set each pin to either read signals (input) from things like buttons and sensors or send signals (output) to things like LEDs and motors. This lets you interact with and control the physical world using code!

A great resource for understanding pin numbering can be found at pinout.beagley.ai

…

import gpiod
import time

gpio14 = gpiod.find_line('GPIO14')
gpio14.request(consumer='beagle', type=gpiod.LINE_REQ_DIR_OUT, default_val=0)

while True:
   gpio14.set_value(1)
   time.sleep(1)
   gpio14.set_value(0)
   time.sleep(1)

...

See more at https://docs.beagle.cc/boards/beagley/ai/demos/beagley-ai-using-gpio.html

The post Using GPIO on BeagleY-AI appeared first on BeagleBoard.

3D printed case for Beaglebone Black

By: admin
12 December 2024 at 23:09

I have shared all the GCODE files and 3mf files on Printables along with all the required information. I hope you will enjoy πŸ™‚

Printables Link: https://www.printables.com/model/1003829-beaglebone-black-enclosure

The post 3D printed case for Beaglebone Black appeared first on BeagleBoard.

❌
❌