tecno4
2.4M views | +46 today
tecno4
Información asignatura tecnología
Your new post is loading...
Your new post is loading...

Popular Tags

Current selected tag: 'Raspberry Pi GPIO'. Clear
Scooped by Gumersindo Fernández
Scoop.it!

Raspberry Pi Pico and Pico W Pinout Guide: GPIOs Explained

Raspberry Pi Pico and Pico W Pinout Guide: GPIOs Explained | tecno4 | Scoop.it
This article goes into detail about the Raspberry Pi Pico and Pico W pinout. The Raspberry Pi Pico comes with 40 pins that can be used to connect electronic components like LEDs, motors, and sensors. Learn what each pin does, what it can be used for, and its specific functions.
No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

The Raspberry Pi GPIO Pinout: Diagram & Explanation

The Raspberry Pi GPIO Pinout: Diagram & Explanation | tecno4 | Scoop.it
The GPIO pins, placed on each Raspberry Pi model, are one of the best features to expand the device's capabilities. But, it's not easy to…
No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

PINES GPIO DE RASPBERRY BCM - BOARD

En este episodio veremos como configurar los pines de propósito general que traen los modelos de raspberry para poder utilizarlos y programarlos a nuestra conveniencia, veremos los sistemas de numeración que tiene , ademas de 2 ejemplos utilizando la librería RPi.GPIO para encender y apagar un led y también usar un botón en modo pull-up.
No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

GPIO: todo sobre las conexiones de la Raspberry Pi 4 y 3

GPIO: todo sobre las conexiones de la Raspberry Pi 4 y 3 | tecno4 | Scoop.it

Los pines GPIO de la placa Raspberry Pi 4, la 3, y también de sus predecesores, dotan a la placa SBC de capacidades similares a las que puede tener Arduino, ya que con ellos puedes crear proyectos electrónicos muy interesantes controlados desde el sistema operativo mediante código en distintos lenguajes, como Python.

Eso hace que la placa sea algo más que un simple ordenador barato. Te va a permitir conectar multitud de elementos electrónicos que puedes usar con Arduino, pero que también pueden ser controlados desde la Pi. En esta guía intentaré darte toda la información posible sobre estos pines GPIO para que puedas comenzar a aprovecharlos…

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

GPIO Raspberry Pi

GPIO Raspberry Pi | tecno4 | Scoop.it
Del mismo modo que Arduino dispone de una serie de pines que podíamos conectar al mundo exterior para leer o escribir, Raspberry dispone de otra serie de pines homólogos que en la jerga habitual de la RPI se llaman GPIO (General Purpose Input Output).

GPIO: https://www.raspberrypi.org/documentation/hardware/raspberrypi/gpio/README.md

La cantidad de pines disponibles en el GPIO ha variado de unas versiones a otras, manteniendo la compatibilidad con las versiones anteriores para evitar problemas, y a grandes rasgos ha habido dos versiones de GPIO. La gran variación fue de la Raspi 1 a la Raspi 2 que aumentó el número de pines disponibles y que básicamente se pueden ver aquí:
No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

Input from a Sensor via GPIO 

Input from a Sensor via GPIO  | tecno4 | Scoop.it

Hello and welcome to part 7 of the Raspberry Pi tutorial series. In this tutorial, we're going to introduce a new sensor, the HC-SR04 ultrasonic distance sensor, along with handling GPIO input.
The HC-SR04 distance sensor measures distance based on emitting a sound burst, and timing how long it takes to receive the echo back. Using the known constant that is the speed of sound, we can mathmematically determine the distance of any object in front of this sensor by simply measuring how much time passed while the sound waves were emitted, hit the object in front of the sensor, bounced back, and came back to the sensor.

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

Raspberry Pi: GPIO (parte II) 

Raspberry Pi: GPIO (parte II)  | tecno4 | Scoop.it

En el artículo anterior vimos qué eran los GPIO en una Raspberry Pi y la finalidad de cada uno.

Hoy os voy a contar cómo configurarlos para su uso como entrada/salida. Os enseñaré 2 formas de hacerlo: mediante el propio terminal de Raspbian y con Python.

Yo tengo Raspbian como sistema en mi Raspbery Pi y es el que utilizaré para explicaros todo esto. Si no sabéis como instalarlo aquí os cuento como.

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

Tutoriales - Primeros pasos con Pines GPIO en Raspberry Pi

Tutoriales - Primeros pasos con Pines GPIO en Raspberry Pi | tecno4 | Scoop.it
Primeros pasos con Pines GPIO en Raspberry Pi
No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

Getting started with GPIO Pins on Raspberry Pi 

Getting started with GPIO Pins on Raspberry Pi  | tecno4 | Scoop.it

GPIO Pins on Raspberry Pi are a big feature you need to know
As I’m a Linux administrator, I mainly used it for testing systems and softwares in the first months
But to go further and create your own electronic systems and programs you need to learn how to use them
What is GPIO Pins and how to use them?
GPIO pins allow us to add extensions to your Raspberry Pi, whether with HATs or with your own circuits
The easiest way to use them is to create Python scripts, but you can also use Scratch or other softwares

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

¿Qué hacen los pines GPIO de la Raspberry Pi 4?

¿Qué hacen los pines GPIO de la Raspberry Pi 4? | tecno4 | Scoop.it

Descubrimos el pinout GPIO de la nueva Raspberry Pi. Qué hace cada Pin en la Raspberry Pi 4 y en los modelos anteriores.

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

GPIO 

GPIO  | tecno4 | Scoop.it

It is possible to control GPIO pins using a number of programming languages and tools. See the following guides to get started:

Warning: while connecting up simple components to the GPIO pins is perfectly safe, it's important to be careful how you wire things up. LEDs should have resistors to limit the current passing through them. Do not use 5V for 3V3 components. Do not connect motors directly to the GPIO pins, instead use an H-bridge circuit or a motor controller board.

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

MQTT Based Raspberry Pi Home Automation: Controlling Raspberry Pi GPIO using MQTT Cloud

MQTT Based Raspberry Pi Home Automation: Controlling Raspberry Pi GPIO using MQTT Cloud | tecno4 | Scoop.it

In previous tutorial we have discussed about MQTT Protocol and installed local MQTT server on our Raspberry Pi for controlling the GPIO locally. But the drawback of local MQTT server is that we cannot control the GPIOs from anywhere in the world, it only provides services locally. But if this MQTT server is hosted on some cloud then any appliances connected to Raspberry Pi can be controlled globally.

Here, in this tutorial, we will use Adafruit IO as MQTT broker to control an AC appliance connected to Raspberry Pi GPIO. Also check other IoT controlled Home Automation tutorials:

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

pi-gpio-display

pi-gpio-display | tecno4 | Scoop.it

En este enlace al Github de Rene Richarz están las instrucciones para instalar una aplicación que nos resultará muy útil porque muestra en la pantalla los pines de Raspberry y su estado (apagado, encendido…).

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

Raspberry Pi Pinout Guide: How to use the Raspberry Pi GPIOs?

Raspberry Pi Pinout Guide: How to use the Raspberry Pi GPIOs? | tecno4 | Scoop.it
The Raspberry Pi 4 Model B and most recent versions of the Raspberry Pi have a double row of 40 GPIOs (General Purpose Input/Output Pins) that allow you to connect electronic components like LEDs and sensors. Some pins have specific functions like providing power, I2C, SPI, and UART communication protocols or PWM. In this guide, we’ll take a look at the Raspberry Pi GPIOs and their functions.
No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

How to Use Raspberry Pi GPIO Pins - Python Tutorial

How to Use Raspberry Pi GPIO Pins - Python Tutorial | tecno4 | Scoop.it
Whether it’s the Raspberry Pi 3, 4 or the tiny Raspberry Pi Zero, GPIO pins have always been a staple feature of our favourite single board computer (SBC), the RPi. However, do you know about its functionality and how to use it to create real world projects? In today’s tutorial, we will show you how to get started with the world of physical computing and GPIO through Python programming!
No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

Raspberry Pi 4 Pinout

Raspberry Pi 4 Pinout | tecno4 | Scoop.it
Here’s taking a look at the Raspberry Pi 4 pin configuration
No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

Manejar GPIO Raspberry Pi

Manejar GPIO Raspberry Pi | tecno4 | Scoop.it

Para controlar GPIO con Python, primero debes importar una librería de código escrito previamente. El más común y difundido es el Rpi.GPIO, utilizado para crear miles de proyectos desde los primeros días de la Raspberry Pi.

Ben Croston creó una biblioteca de Python llamada RPi.GPIO, que utilizó como parte de su proceso de elaboración de cerveza. Esto permitió a las personas controlar los pines GPIO desde sus programas Python, y se convirtió en un éxito tanto en educación como en proyectos personales. Lo usamos en muchos de nuestros recursos de aprendizaje gratuitos.

Web: https://pypi.org/project/RPi.GPIO/

Más recientemente, se ha introducido otra biblioteca, llamada GPIO Zero, que ofrece una experiencia más fácil para aquellos que son nuevos en Python y en la electrónica básica. GPIO Zero es una librería creada por Raspberry Pi para que sea más accesible y fácil de usar que RPi.GPIO

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

Getting Started with the Raspberry Pi GPIO and gpiozero

Getting Started with the Raspberry Pi GPIO and gpiozero | tecno4 | Scoop.it

When we need to interface with sensors, motors, and displays we generally think about using an Arduino, however, there are a lot of advantages in using a Raspberry Pi instead. Today we will see how easy it is to interface devices using the Raspberry Pi GPIO.

The easiest way to work with the Raspberry Pi GPIO is to use a library.  There are several to choose from.

  • WiringPi – This was one of the earliest GPIO libraries written for the Raspberry Pi.
  • RPIO – A pretty advanced GPIO library.
  • Pigpio – A Python module to interface with the GPIO. Also supported on other platforms.
  • RPi.GPIO – A very popular GPIO library
  • gpiozero –  A GPIO library that simplifies working with the GPIO.

We will be using the gpiozero library for our experiments, and we’ll get our Python code directly from the gpiozero documentation “Basic Recipes” section.

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

GPIO (General Purpose Input Output) Pins 

GPIO (General Purpose Input Output) Pins  | tecno4 | Scoop.it

Hello and welcome to part 6 of the Raspberry Pi tutorial series. In this tutorial, we're going to be introducing and using the GPIO (General Purpose Input Output) pins on our boards.
These pins are directly connected to our Broadcom chip, so this is a "proceed at your own risk" tutorial. You can fry your Pi with a simple mistake plugging into the wrong pin. That said, most of the awesome functionality of the Raspberry Pi comes from these pins, so it's a rewarding thing to learn.
The first thing you'll want to do is familiarize yourself with which of the pins you can use, and what they do. The best diagram in my opinion is from Adafruit:

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

Raspberry Pi: GPIO (parte I)

Raspberry Pi: GPIO (parte I) | tecno4 | Scoop.it
GPIO son las siglas de General Purpose Input/Output. Se trata de los pines que tienen todas las placas Raspberry Pi en uno de sus bordes. Los modelos anteriores a 2014 solo tenían 26 pines GPIO, pero las placas actuales disponen de 40:
No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

Raspberry Pi en IoT

Raspberry Pi en IoT | tecno4 | Scoop.it

La placa Raspberry se utiliza, como Arduino, en entornos de robótica o domótica, pero también como servidor de archivos. Es otra opción dentro del IoT y es muy interesante cuando el objetivo es procesar y tratar muchos datos. Cualquiera de ellos, Arduino o Raspberry, ofrece fórmulas eficaces para multitud de proyectos, pero todavía es difícil establecer su límite al estar en constante evolución.
Pero además, la Raspberry Pi 3 viene cargada con tecnología adicional para que podamos conectar nuestros proyectos al mundo de Internet de las Cosas.

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

Raspberry Pi GPIO Explained 

Lea sobre 'Raspberry Pi GPIO Explained' en element14.com. Contents IntroductionThe Raspberry Pi is a computer, and from a connections point of view it doesnt look much different to a normal desktop computer. It
No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

An introduction to Raspberry Pi GPIO

An introduction to Raspberry Pi GPIO | tecno4 | Scoop.it

GPIO stands for General Purpose Input-Output, what this means in layman terms is that the the pins can be used as either inputs, which receive data, or outputs, which react to data. An input might include a button or a sensor, an output could be an LED or a buzzer. This means that we can create exciting physical computing projects which react and interact with the real world instead of just learning to program text on the screen!

Not all of the pins are programmable and controllable, in fact, there are only 26 that can be used in this way, but the other pins all serve valuable purposes too.

Take a look at this pin diagram created by the Raspberry Pi Foundation which tells you firstly, which pins are programmable GPIO pins, in yellow, but also highlights some information about the other pins too. This diagram assumes that pin 21 is the pin closest to the USB ports.

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

GPIO Raspberry Pi explicación y uso, encender un LED

GPIO Raspberry Pi explicación y uso, encender un LED | tecno4 | Scoop.it

Hola y bienvenidos al tutorial 6 de la serie de Raspberry Pi. En este tutorial, vamos a explicar y utilizar los pines GPIO (General Purpose Input Output) en nuestras placas.

Estos pines están conectados directamente a nuestro chip Broadcom, así que cuidado ⚠ puedes freír tu Raspberry Pi con un simple error enchufando el pin equivocado ⚠ . Dicho esto, la mayor parte de las impresionantes funcionalidades de la Raspberry Pi viene en estos pines, así que es una cosa gratificante de aprender.

No comment yet.
Scooped by Gumersindo Fernández
Scoop.it!

Programación/GPIO

Programación/GPIO | tecno4 | Scoop.it
A partir de ahora he abierto esta nueva sección donde iré añadiendo todo aquello que hace referencia a lenguajes de programación para nuestra RaspberryPi.
No comment yet.