How To Create App For Raspberry Pi
Raspberry Pi 3 Model B is the latest iteration of the world's most popular single board computer. It provides a quad-core 64-bit ARM Cortex-A53 CPU running at 1.2GHz, four USB 2.0 ports, wired and wireless networking, HDMI and composite video output, and a 40-pin GPIO connector for physical interfacing projects.
See the I/O pinouts for more details on the Peripheral I/O signals on this board.
Flashing the image
Before you begin flashing, you will need the following items in addition to your Raspberry Pi:
- Micro-USB cable
- Ethernet cable
- MicroSD card reader
- 8 GB or larger microSD card
Optional items:
- HDMI cable
- HDMI-enabled display
Step 1: Flash Android Things
Download an image from the Android Things Console and write it to the microSD card:
- Linux
- Mac
- Windows
Step 2: Connect the hardware
Make the following connections to your board:
- Connect a USB cable to J1 for power.
-
Connect an Ethernet cable to your local network.
- Connect the Ethernet cable to your development computer and assign the Raspberry Pi an IP address using DHCP.
- Connect a serial cable from the Raspberry Pi to your development computer. Use a serial console to connect to Wi-Fi.
-
(Optional) Connect an HDMI cable to an external display.
-
Verify that Android is running on the device. To do this, you need to find the IP address of the device:
- If you connected a display, the Android Things Launcher will use it to show information about the board, including the IP address.
- If you assigned an IP address to the device using DHCP, find this address in the network settings of your router or development computer.
-
Connect to the IP address using the adb tool:
$ adb connect <ip-address> connected to <ip-address>:5555
Connect Wi-Fi
After flashing your board, it is strongly recommended to connect it to the internet. This allows your device to deliver crash reports and receive updates.
To connect to Wi-Fi, follow the instructions to connect to Wi-Fi with adb
.
Serial debug console
The serial console is a helpful tool for debugging your board and reviewing system log information. The console is the default output location for kernel log messages (i.e. dmesg
), and it also provides access to a full shell prompt that you can use to access commands such as logcat. This is helpful if you are unable to access ADB on your board through other means and have not yet enabled a network connection.
To access the serial console, connect a USB to TTL Serial Cable to the device UART pins as shown below.
Open a connection to the USB serial device on your development computer using a terminal program, such as PuTTY (Windows), Serial (Mac OS), or Minicom (Linux). The serial port parameters for the console are as follows:
- Baud Rate: 115200
- Data Bits: 8
- Parity: None
- Stop Bits: 1
I/O Pinouts
This section describes the Peripheral I/O interfaces available to your apps running on the Raspberry Pi 3.
The Raspberry Pi has pins that are multiplexed between various board functions. Some board functions cannot be used simultaneously (for example, enabling Bluetooth and using the UART0
port for peripheral I/O). For more information, see the pin function modes.
The following pinout diagram illustrates the locations of the available ports exposed by the breakout connectors of this board:
GPIO Signal | Alternate Functions | |
---|---|---|
BCM2 | I2C1 (SDA) | |
BCM3 | I2C1 (SCL) | |
BCM7 | SPI0 (SS1) | |
BCM8 | SPI0 (SS0) | |
BCM9 | SPI0 (MISO) | |
BCM10 | SPI0 (MOSI) | |
BCM11 | SPI0 (SCLK) | |
BCM13 | PWM1 | |
BCM14 | UART0 (TXD) | MINIUART (TXD) |
BCM15 | UART0 (RXD) | MINIUART (RXD) |
BCM18 | I2S1 (BCLK) | PWM0 |
BCM19 | I2S1 (LRCLK) | |
BCM20 | I2S1 (SDIN) | |
BCM21 | I2S1 (SDOUT) |
Pin Function Modes
The following modes in each table are mutually exclusive on the Raspberry Pi 3.
UART modes
The Raspberry Pi has a single full-speed UART (UART0) and a mini UART (MINIUART); see the official docs for information on their differences. These UARTs are multiplexed between various board functions and cannot be used simultaneously. The following modes are supported:
Mode | Activated By | Bluetooth | Pin Functions |
---|---|---|---|
Debug console | Default mode; no PIO connections | Enabled | Pins BCM14/BCM15 expose RX/TX of the serial debug console |
UART0 | UART0 opened by PIO | Disabled | Pins BCM14/BCM15 expose RX/TX of UART0 |
MINIUART | MINIUART opened by PIO | Enabled | Pins BCM14/BCM15 expose RX/TX of MINIUART |
BCM14 or BCM15 | Pin opened by PIO | Enabled | Named pin (BCM14 or BCM15) is GPIO, other pin is idle |
An IOException
error is thrown if you try to open an active pin (from above) using a different UART mode.
Audio modes
The Raspberry Pi shares hardware resources between Peripheral I/O and the audio subsystem (I2S and analog). Analog audio is transmitted through the 3.5mm audio jack. The following modes are supported:
Mode | Activated By | Audio Routes | Pin Functions |
---|---|---|---|
Audio | Default mode; no PIO connections | I2S + Analog | N/A |
PWM | PWM0 opened by PIO | Disabled | Pin BCM18 enabled as PWM |
GPIO | Pin1 opened by PIO | Analog only | Named pin is GPIO |
1 Includes pins BCM18, BCM19, BCM20, and BCM21
When you are creating a hardware configuration in the Android Things Console, BCM18 and BCM19 pullup and pulldown resistors don't apply until the GPIO is actually opened in order to avoid interfering with the I2S bus on the same pins.
How To Create App For Raspberry Pi
Source: https://developer.android.com/things/hardware/raspberrypi
Posted by: perkinsofeautioull.blogspot.com
0 Response to "How To Create App For Raspberry Pi"
Post a Comment