RGBW Stripe WireLess Shield V1.0

RGBW Stripe WireLess Shield has 4 PWM output to connect RGBW LED Strip. Anyone can handle a load of 1.5 A with a voltage of 5 to 24 V. Integrated control in 5 Arduino easily provide power from the input power supply. Self-renewing fuse protects LED Strip overcurrent. For remote control RGB tape used popular transceiver nRF24L01+. The most interesting is that the board has a memory, and you can now update the firmware of your Arduino through the air!


Model: 105990030

Feature

Layout and schematics

Basic functionality

Interfaces

Features Shield

Supports update over the air only on the chip microcontrollers ATmega 328 with firmware (based loader DualOptiboot).

Libraries

Necessary libraries

Demo code (example)

 
int L_RED = 6;           
int L_GREEN = 9;          
int L_BLUE = 3;           
int L_WHITE = 5;          
 
int brightness = 0;    
int fadeAmount = 5;    
 
void setup()  { 
  pinMode(L_RED, OUTPUT);
  pinMode(L_GREEN, OUTPUT);
  pinMode(L_BLUE, OUTPUT);
  pinMode(L_WHITE, OUTPUT);
} 
 
void loop()  { 
  // RED 
  analogWrite(L_RED, brightness);    
  brightness = brightness + fadeAmount;
  if (brightness == 0 || brightness == 255) {
    fadeAmount = -fadeAmount ; 
  }     
  // GREEN 
  analogWrite(L_GREEN, brightness);    
  brightness = brightness + fadeAmount;
  if (brightness == 0 || brightness == 255) {
    fadeAmount = -fadeAmount ; 
  }
  // BLUE 
  analogWrite(L_BLUE, brightness);    
  brightness = brightness + fadeAmount;
  if (brightness == 0 || brightness == 255) {
    fadeAmount = -fadeAmount ; 
  }
  // WHITE 
  analogWrite(L_WHITE, brightness);    
  brightness = brightness + fadeAmount;
  if (brightness == 0 || brightness == 255) {
    fadeAmount = -fadeAmount ; 
  }                                
}

Demo code (OTA Boot with testing)

 

Version Tracker

Revision Description Release
1.0 rev 1 Public version 19.11.2015

Questions and Answers

How to buy

This product can be purchased:
China (shipping worldwide)
Seeed store
Elecrow store
Russia
Devicter store

Licensing

This documentation is licensed under the Creative Commons Attribution-ShareAlike License 3.0 Source code and libraries are

licensed under GPL/LGPL, see source code files for details.

Copyright (c) 2008-2016 Seeed Development Limited (www.seeedstudio.com / www.seeed.cc)
This static html page was created from http://www.seeedstudio.com/wiki