- "Introduction to Bluetooth Low Energy" by Adafruit.
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
# This is for ElasticBeanstalk with Amazon Linux 2023. For previous Linux 2 or Linux 1, see revisions for ideas | |
packages: | |
yum: | |
cups-libs: [] | |
libdrm: [] | |
libXdamage: [] | |
libXfixes: [] | |
libXrandr: [] | |
mesa-libgbm: [] | |
libxkbcommon: [] |
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
const logger = require('./logger'), | |
AWS = require('aws-sdk'), | |
CronJob = require('cron').CronJob; | |
AWS.config.update({region: 'us-east-1'}); // change to your region | |
var opts = { | |
credentials: new AWS.EC2MetadataCredentials()// default to use the credentials for the ec2 instance | |
}; | |
var elasticbeanstalk = new AWS.ElasticBeanstalk(opts); |