This file contains 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
#!/bin/sh | |
# | |
# Ampy script to mirror current directory to a microcontroller | |
export AMPY_PORT=/dev/tty.SLAB_USBtoUART | |
export AMPY_BAUD=115200 | |
function log() { | |
echo "$*" >&2 | |
} |
This file contains 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
Pod::Spec.new do |s| | |
s.name = "PhilipsHueSDK-iOS" | |
s.version = "1.1.3beta" | |
s.license = { :type => "MIT", :file => "ACKNOWLEDGEMENTS.md"} | |
s.summary = "The Software Development Kit for Philips Hue on iOS (beta)" | |
s.homepage = "https://github.com/PhilipsHue/PhilipsHueSDK-iOS-OSX" | |
s.requires_arc = true | |
s.ios.deployment_target = '8.1' |