Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Android Things Quick Start Guide

You're reading from   Android Things Quick Start Guide Build your own smart devices using the Android Things platform

Arrow left icon
Product type Paperback
Published in Aug 2018
Publisher Packt
ISBN-13 9781789341799
Length 192 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Raul Portales Raul Portales
Author Profile Icon Raul Portales
Raul Portales
Arrow right icon
View More author details
Toc

Making the code work on any developer kit

As we mentioned before, the pin names of the Raspberry Pi and the iMX7D are different. You can take a look at the pinout diagrams in the Appendix, and I suggest that you print them out to have them at hand.

Have the pinout diagram of your developer kit at hand.

When we flipped the Rainbow HAT, we could see that the red LED was wired to BCM6, which is pin 31 of the board. While the pin position is the same, that pin on the iMX7D is called GPIO2_IO02.

However, if we look at the source code of the Rainbow HAT driver, which is in Java, we see that it is accessed using a function.

public static Gpio openLedRed() throws IOException {
return openLed(BOARD.getLedR());
}

This is a concept that is used frequently on examples when you want them to work on both devices. At the very minimum you should use a constant for the pin, so if someone has to...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime