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.
22 lines
817 B
Go
22 lines
817 B
Go
// Copyright 2016 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 apa102 drives a strip of APA102 LEDs connected on a SPI port.
|
|
//
|
|
// These devices are interesting because they have 2 PWMs: one global of 5 bits
|
|
// of resolution and one per channel of 8 bits of resolution. This means that
|
|
// the dynamic range is of 13 bits.
|
|
//
|
|
// This driver handles color intensity and temperature correction and uses the
|
|
// full near 8000:1 dynamic range as supported by the device.
|
|
//
|
|
// More details
|
|
//
|
|
// See https://periph.io/device/apa102/ for more details about the device.
|
|
//
|
|
// Datasheet
|
|
//
|
|
// https://cpldcpu.files.wordpress.com/2014/08/apa-102c-super-led-specifications-2014-en.pdf
|
|
package apa102
|