Ir al contenido principal

Esquema de pin gpio raspberry pi


En esta pequeña tabla podemos ver las diferencias existentes en los modelos actuales.


Nota: Cabe destacar que existe otro modelo llamado "Raspberry Pi Zero W", es lo mismo que la Zero, pero con una tarjeta wifi integrada (No es necesario adaptar una USB).


Raspberry Pi Zero



Raspberry Pi B+




Raspberry Pi A y también el modelo B rev.2


los que me faltan los pondré mas adelante.

Comentarios

Entradas más populares de este blog

Configurando Modem USB en Raspberry Pi

Setting up a USB 3G/4G modem on a Raspberry Pi is not a simple task. There are many guides available using the now defunct  sakis3g  script, but getting my modem to work required a bit more understanding.  The main problem is that most USB modems act as two devices - a USB storage device and a USB modem. When plugged in to the Raspberry PI the device is usually in USB storage mode. There is a program called  usb_modeswitch  that we can use to do the switching  The other missing part is a way to connect to the cellular network with the USB modem from the Raspberry. For this we will use the classic  ppp  and  wvdial programs. Requirements Raspberry PI computer Raspbian OS installed USB 3G Modem 5V 1A power supply for the Raspberry PI  1. Install required software Connect your Raspberry PI to the internet via LAN or Wifi Open a terminal window and enter: sudo apt-get update sudo apt-get install ppp usb-modeswitch wvd...