mirror of https://github.com/periph/devices
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
707 B
Go
29 lines
707 B
Go
// Copyright 2018 The Periph Authors. All rights reserved.
|
|
// Use of this source code is governed under the Apache License, Version 2.0
|
|
// that can be found in the LICENSE file.
|
|
|
|
// Package rainbowhat implements interfacing code to Pimoroni's Rainbow hat.
|
|
//
|
|
// This driver provides easy access to the peripherals available on the Rainbow Hat for Android Things:
|
|
//
|
|
// BMP280 temperature and pressure sensor (I2C)
|
|
//
|
|
// HT16K33 segment display (I2C)
|
|
//
|
|
// Capacitive buttons (GPIO)
|
|
//
|
|
// LEDs (GPIO)
|
|
//
|
|
// APA102 RGB LEDs (SPI)
|
|
//
|
|
// Piezo Buzzer (PWM)
|
|
//
|
|
// Servo header (PWM)
|
|
//
|
|
// More details
|
|
//
|
|
// Product Page
|
|
//
|
|
// https://shop.pimoroni.com/products/rainbow-hat-for-android-things
|
|
package rainbowhat
|