Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Garcia <danielgarcia@gmail.com>2014-10-02 08:22:01 +0400
committerDaniel Garcia <danielgarcia@gmail.com>2014-10-02 08:22:01 +0400
commit483ecfd225c34be1df277bdd6a591ed6857f591a (patch)
treec9fe4c5df66c2e058ebeafa6fd5161990e3e0166
parentd4cfd0be38bf7fe9ae565061f643bc5105a71d85 (diff)
Issue #70 - turns out the clock doubling behavior is right - we just can't drive these chipsets as fast as we would like.
-rw-r--r--chipsets.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chipsets.h b/chipsets.h
index d60dbe72..dbfec665 100644
--- a/chipsets.h
+++ b/chipsets.h
@@ -212,7 +212,7 @@ protected:
//
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-template <uint8_t DATA_PIN, uint8_t CLOCK_PIN, EOrder RGB_ORDER = RGB, uint8_t SPI_SPEED = DATA_RATE_MHZ(15)>
+template <uint8_t DATA_PIN, uint8_t CLOCK_PIN, EOrder RGB_ORDER = RGB, uint8_t SPI_SPEED = DATA_RATE_MHZ(10)>
class P9813Controller : public CLEDController {
typedef SPIOutput<DATA_PIN, CLOCK_PIN, SPI_SPEED> SPI;
SPI mSPI;