├── .gitignore ├── CC254x └── LedController │ ├── CC2540DB │ ├── SimpleBLEPeripheral.ewd │ ├── SimpleBLEPeripheral.ewp │ ├── SimpleBLEPeripheral.eww │ ├── buildConfig.cfg │ └── settings │ │ ├── SimpleBLEPeripheral.cspy.bat │ │ └── SimpleBLEPeripheral.dbgdt │ ├── CC2541DB │ ├── SimpleBLEPeripheral.ewd │ ├── SimpleBLEPeripheral.ewp │ ├── SimpleBLEPeripheral.eww │ └── buildConfig.cfg │ └── Source │ ├── OSAL_SimpleBLEPeripheral.c │ ├── SimpleBLEPeripheral_Main.c │ ├── global.h │ ├── ledService.c │ ├── ledService.h │ ├── leds.c │ ├── leds.h │ ├── simpleBLEPeripheral.c │ └── simpleBLEPeripheral.h ├── LICENSE ├── README.md └── iOS ├── LedController ├── Audio_iPad.storyboard ├── Audio_iPhone.storyboard ├── Base.lproj │ ├── Main_iPad.storyboard │ └── Main_iPhone.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon29x29.png │ │ ├── AppIcon29x29@2x-1.png │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon40x40.png │ │ ├── AppIcon40x40@2x-1.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon76x76.png │ │ ├── AppIcon76x76@2x.png │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── ipad_landscape.png │ │ ├── ipad_portrait.png │ │ ├── ipad_sd_landscape.png │ │ ├── ipad_sd_portrait.png │ │ ├── iphone_portrait.png │ │ └── iphone_portrait_3.5.png ├── LGBluetooth │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LGBluetooth.podspec │ ├── LGBluetooth │ │ ├── CBUUID+StringExtraction.h │ │ ├── CBUUID+StringExtraction.m │ │ ├── LGBluetooth.h │ │ ├── LGCentralManager.h │ │ ├── LGCentralManager.m │ │ ├── LGCharacteristic.h │ │ ├── LGCharacteristic.m │ │ ├── LGPeripheral.h │ │ ├── LGPeripheral.m │ │ ├── LGService.h │ │ ├── LGService.m │ │ ├── LGUtils.h │ │ └── LGUtils.m │ ├── LGBluetoothExample.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── LGBluetoothExample │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ ├── LGAppDelegate.h │ │ ├── LGAppDelegate.m │ │ ├── LGBluetoothExample-Info.plist │ │ ├── LGBluetoothExample-Prefix.pch │ │ ├── LGViewController.h │ │ ├── LGViewController.m │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── LGBluetoothExampleTests │ │ ├── LGBluetoothExampleTests-Info.plist │ │ ├── LGBluetoothExampleTests.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ └── Screenshots │ │ ├── 1.PNG │ │ ├── 2.PNG │ │ ├── 3.PNG │ │ ├── 4.PNG │ │ └── 5.PNG ├── LedRemote-Info.plist ├── LedRemote-Prefix.pch ├── SSAnimationButtonGridView.h ├── SSAnimationButtonGridView.m ├── SSAppDelegate.h ├── SSAppDelegate.m ├── SSAudioView.h ├── SSAudioView.m ├── SSAudioViewController.h ├── SSAudioViewController.m ├── SSBLEController.h ├── SSBLEController.m ├── SSButtonGridView.h ├── SSButtonGridView.m ├── SSColorAnimator.h ├── SSColorAnimator.m ├── SSColorButtonView.h ├── SSColorButtonView.m ├── SSViewController.h ├── SSViewController.m ├── UIImage+Extensions.h ├── UIImage+Extensions.m ├── en.lproj │ └── InfoPlist.strings ├── global.h ├── iTunesArtwork.png ├── iTunesArtwork@2x.png ├── icons │ ├── 1-icon.png │ ├── 1-icon@2x.png │ ├── 2-icon.png │ ├── 2-icon@2x.png │ ├── 3-icon.png │ ├── 3-icon@2x.png │ ├── anger-icon.png │ ├── anger-icon@2x.png │ ├── disco-icon.png │ ├── disco-icon@2x.png │ ├── disgust-icon.png │ ├── disgust-icon@2x.png │ ├── explosion-icon.png │ ├── explosion-icon@2x.png │ ├── fear-icon.png │ ├── fear-icon@2x.png │ ├── fire-icon.png │ ├── fire-icon@2x.png │ ├── happy-icon.png │ ├── happy-icon@2x.png │ ├── hearth-icon.png │ ├── hearth-icon@2x.png │ ├── hearthbeat-icon.png │ ├── hearthbeat-icon@2x.png │ ├── lightning-icon.png │ ├── lightning-icon@2x.png │ ├── magic-icon.png │ ├── magic-icon@2x.png │ ├── sadness-icon.png │ ├── sadness-icon@2x.png │ ├── sunrise-icon.png │ ├── sunrise-icon@2x.png │ ├── surprice-icon.png │ ├── surprice-icon@2x.png │ ├── water-icon.png │ └── water-icon@2x.png └── main.m ├── LedControllerTests ├── LedControllerTests.m ├── LedRemoteTests-Info.plist └── en.lproj │ └── InfoPlist.strings ├── LedRemote copy-Info.plist └── LedRemote.xcodeproj ├── project.pbxproj └── project.xcworkspace └── contents.xcworkspacedata /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/.gitignore -------------------------------------------------------------------------------- /CC254x/LedController/CC2540DB/SimpleBLEPeripheral.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/CC2540DB/SimpleBLEPeripheral.ewd -------------------------------------------------------------------------------- /CC254x/LedController/CC2540DB/SimpleBLEPeripheral.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/CC2540DB/SimpleBLEPeripheral.ewp -------------------------------------------------------------------------------- /CC254x/LedController/CC2540DB/SimpleBLEPeripheral.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/CC2540DB/SimpleBLEPeripheral.eww -------------------------------------------------------------------------------- /CC254x/LedController/CC2540DB/buildConfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/CC2540DB/buildConfig.cfg -------------------------------------------------------------------------------- /CC254x/LedController/CC2540DB/settings/SimpleBLEPeripheral.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/CC2540DB/settings/SimpleBLEPeripheral.cspy.bat -------------------------------------------------------------------------------- /CC254x/LedController/CC2540DB/settings/SimpleBLEPeripheral.dbgdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/CC2540DB/settings/SimpleBLEPeripheral.dbgdt -------------------------------------------------------------------------------- /CC254x/LedController/CC2541DB/SimpleBLEPeripheral.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/CC2541DB/SimpleBLEPeripheral.ewd -------------------------------------------------------------------------------- /CC254x/LedController/CC2541DB/SimpleBLEPeripheral.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/CC2541DB/SimpleBLEPeripheral.ewp -------------------------------------------------------------------------------- /CC254x/LedController/CC2541DB/SimpleBLEPeripheral.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/CC2541DB/SimpleBLEPeripheral.eww -------------------------------------------------------------------------------- /CC254x/LedController/CC2541DB/buildConfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/CC2541DB/buildConfig.cfg -------------------------------------------------------------------------------- /CC254x/LedController/Source/OSAL_SimpleBLEPeripheral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/Source/OSAL_SimpleBLEPeripheral.c -------------------------------------------------------------------------------- /CC254x/LedController/Source/SimpleBLEPeripheral_Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/Source/SimpleBLEPeripheral_Main.c -------------------------------------------------------------------------------- /CC254x/LedController/Source/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/Source/global.h -------------------------------------------------------------------------------- /CC254x/LedController/Source/ledService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/Source/ledService.c -------------------------------------------------------------------------------- /CC254x/LedController/Source/ledService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/Source/ledService.h -------------------------------------------------------------------------------- /CC254x/LedController/Source/leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/Source/leds.c -------------------------------------------------------------------------------- /CC254x/LedController/Source/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/Source/leds.h -------------------------------------------------------------------------------- /CC254x/LedController/Source/simpleBLEPeripheral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/Source/simpleBLEPeripheral.c -------------------------------------------------------------------------------- /CC254x/LedController/Source/simpleBLEPeripheral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/CC254x/LedController/Source/simpleBLEPeripheral.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/README.md -------------------------------------------------------------------------------- /iOS/LedController/Audio_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Audio_iPad.storyboard -------------------------------------------------------------------------------- /iOS/LedController/Audio_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Audio_iPhone.storyboard -------------------------------------------------------------------------------- /iOS/LedController/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /iOS/LedController/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon29x29.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x-1.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon40x40.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x-1.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon76x76.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/AppIcon.appiconset/AppIcon76x76@2x.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/LaunchImage.launchimage/ipad_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/LaunchImage.launchimage/ipad_landscape.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/LaunchImage.launchimage/ipad_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/LaunchImage.launchimage/ipad_portrait.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/LaunchImage.launchimage/ipad_sd_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/LaunchImage.launchimage/ipad_sd_landscape.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/LaunchImage.launchimage/ipad_sd_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/LaunchImage.launchimage/ipad_sd_portrait.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/LaunchImage.launchimage/iphone_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/LaunchImage.launchimage/iphone_portrait.png -------------------------------------------------------------------------------- /iOS/LedController/Images.xcassets/LaunchImage.launchimage/iphone_portrait_3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/Images.xcassets/LaunchImage.launchimage/iphone_portrait_3.5.png -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/.gitignore -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/CHANGELOG.md -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth.podspec -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/CBUUID+StringExtraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/CBUUID+StringExtraction.h -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/CBUUID+StringExtraction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/CBUUID+StringExtraction.m -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/LGBluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/LGBluetooth.h -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/LGCentralManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/LGCentralManager.h -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/LGCentralManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/LGCentralManager.m -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/LGCharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/LGCharacteristic.h -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/LGCharacteristic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/LGCharacteristic.m -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/LGPeripheral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/LGPeripheral.h -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/LGPeripheral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/LGPeripheral.m -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/LGService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/LGService.h -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/LGService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/LGService.m -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/LGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/LGUtils.h -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetooth/LGUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetooth/LGUtils.m -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample/LGAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExample/LGAppDelegate.h -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample/LGAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExample/LGAppDelegate.m -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample/LGBluetoothExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExample/LGBluetoothExample-Info.plist -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample/LGBluetoothExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExample/LGBluetoothExample-Prefix.pch -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample/LGViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExample/LGViewController.h -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample/LGViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExample/LGViewController.m -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExample/main.m -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExampleTests/LGBluetoothExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExampleTests/LGBluetoothExampleTests-Info.plist -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExampleTests/LGBluetoothExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LGBluetoothExampleTests/LGBluetoothExampleTests.m -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LGBluetoothExampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/LICENSE -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/README.md -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/Rakefile -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/Screenshots/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/Screenshots/1.PNG -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/Screenshots/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/Screenshots/2.PNG -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/Screenshots/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/Screenshots/3.PNG -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/Screenshots/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/Screenshots/4.PNG -------------------------------------------------------------------------------- /iOS/LedController/LGBluetooth/Screenshots/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LGBluetooth/Screenshots/5.PNG -------------------------------------------------------------------------------- /iOS/LedController/LedRemote-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LedRemote-Info.plist -------------------------------------------------------------------------------- /iOS/LedController/LedRemote-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/LedRemote-Prefix.pch -------------------------------------------------------------------------------- /iOS/LedController/SSAnimationButtonGridView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSAnimationButtonGridView.h -------------------------------------------------------------------------------- /iOS/LedController/SSAnimationButtonGridView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSAnimationButtonGridView.m -------------------------------------------------------------------------------- /iOS/LedController/SSAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSAppDelegate.h -------------------------------------------------------------------------------- /iOS/LedController/SSAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSAppDelegate.m -------------------------------------------------------------------------------- /iOS/LedController/SSAudioView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSAudioView.h -------------------------------------------------------------------------------- /iOS/LedController/SSAudioView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSAudioView.m -------------------------------------------------------------------------------- /iOS/LedController/SSAudioViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSAudioViewController.h -------------------------------------------------------------------------------- /iOS/LedController/SSAudioViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSAudioViewController.m -------------------------------------------------------------------------------- /iOS/LedController/SSBLEController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSBLEController.h -------------------------------------------------------------------------------- /iOS/LedController/SSBLEController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSBLEController.m -------------------------------------------------------------------------------- /iOS/LedController/SSButtonGridView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSButtonGridView.h -------------------------------------------------------------------------------- /iOS/LedController/SSButtonGridView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSButtonGridView.m -------------------------------------------------------------------------------- /iOS/LedController/SSColorAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSColorAnimator.h -------------------------------------------------------------------------------- /iOS/LedController/SSColorAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSColorAnimator.m -------------------------------------------------------------------------------- /iOS/LedController/SSColorButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSColorButtonView.h -------------------------------------------------------------------------------- /iOS/LedController/SSColorButtonView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSColorButtonView.m -------------------------------------------------------------------------------- /iOS/LedController/SSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSViewController.h -------------------------------------------------------------------------------- /iOS/LedController/SSViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/SSViewController.m -------------------------------------------------------------------------------- /iOS/LedController/UIImage+Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/UIImage+Extensions.h -------------------------------------------------------------------------------- /iOS/LedController/UIImage+Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/UIImage+Extensions.m -------------------------------------------------------------------------------- /iOS/LedController/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOS/LedController/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/global.h -------------------------------------------------------------------------------- /iOS/LedController/iTunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/iTunesArtwork.png -------------------------------------------------------------------------------- /iOS/LedController/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/1-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/1-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/1-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/1-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/2-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/2-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/2-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/2-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/3-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/3-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/3-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/3-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/anger-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/anger-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/anger-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/anger-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/disco-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/disco-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/disco-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/disco-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/disgust-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/disgust-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/disgust-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/disgust-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/explosion-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/explosion-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/explosion-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/explosion-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/fear-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/fear-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/fear-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/fear-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/fire-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/fire-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/fire-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/fire-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/happy-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/happy-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/happy-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/happy-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/hearth-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/hearth-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/hearth-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/hearth-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/hearthbeat-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/hearthbeat-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/hearthbeat-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/hearthbeat-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/lightning-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/lightning-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/lightning-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/lightning-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/magic-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/magic-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/magic-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/magic-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/sadness-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/sadness-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/sadness-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/sadness-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/sunrise-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/sunrise-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/sunrise-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/sunrise-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/surprice-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/surprice-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/surprice-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/surprice-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/icons/water-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/water-icon.png -------------------------------------------------------------------------------- /iOS/LedController/icons/water-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/icons/water-icon@2x.png -------------------------------------------------------------------------------- /iOS/LedController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedController/main.m -------------------------------------------------------------------------------- /iOS/LedControllerTests/LedControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedControllerTests/LedControllerTests.m -------------------------------------------------------------------------------- /iOS/LedControllerTests/LedRemoteTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedControllerTests/LedRemoteTests-Info.plist -------------------------------------------------------------------------------- /iOS/LedControllerTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOS/LedRemote copy-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedRemote copy-Info.plist -------------------------------------------------------------------------------- /iOS/LedRemote.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedRemote.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS/LedRemote.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StudioSophisti/BLELedController/HEAD/iOS/LedRemote.xcodeproj/project.xcworkspace/contents.xcworkspacedata --------------------------------------------------------------------------------