This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# configure rsyslogd to include logfiles from nginx/apache | |
# needs 010_loggly.config | |
# Save this file as .ebextensions/015_nginx-loggly.config | |
# replace TOKEN | |
# Deploy per normal scripts or aws.push. To help debug the push, ssh & tail /var/log/cfn-init.log | |
# See Also /var/log/eb-tools.log | |
# | |
files: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Install loggly.com on AWS Elastic Beanstalk | |
# Tested with node.js environment | |
# Save this file as .ebextensions/loggly.config | |
# Replace TOKEN and ACCOUNT with your own | |
# Deploy per normal scripts or aws.push. | |
# | |
commands: | |
01_loggly_dl: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Wire.h> | |
#include <SPI.h> | |
//define our colors for LED Array | |
#define GREEN 0x01 | |
#define RED 0x02 | |
#define ORANGE 0x03 | |
//define the SPI pins for the LED Array | |
#define SLAVESELECT 10//ss | |
char ledArray [64]; | |
byte pixelTempL; |
NewerOlder