├── .gitignore ├── LICENSE ├── LightBulb.xcodeproj └── project.pbxproj ├── LightBulb ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── iOS App Icon_1024pt@1x.png │ ├── Contents.json │ └── bulb.imageset │ │ ├── Contents.json │ │ └── bulb.png ├── ContentView.swift ├── LightBulbApp.swift ├── Models │ ├── Bulb.swift │ └── BulbControl.swift └── Resources │ ├── Constants.swift │ └── Helpers.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LICENSE -------------------------------------------------------------------------------- /LightBulb.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LightBulb/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /LightBulb/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LightBulb/Assets.xcassets/AppIcon.appiconset/iOS App Icon_1024pt@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb/Assets.xcassets/AppIcon.appiconset/iOS App Icon_1024pt@1x.png -------------------------------------------------------------------------------- /LightBulb/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LightBulb/Assets.xcassets/bulb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb/Assets.xcassets/bulb.imageset/Contents.json -------------------------------------------------------------------------------- /LightBulb/Assets.xcassets/bulb.imageset/bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb/Assets.xcassets/bulb.imageset/bulb.png -------------------------------------------------------------------------------- /LightBulb/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb/ContentView.swift -------------------------------------------------------------------------------- /LightBulb/LightBulbApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb/LightBulbApp.swift -------------------------------------------------------------------------------- /LightBulb/Models/Bulb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb/Models/Bulb.swift -------------------------------------------------------------------------------- /LightBulb/Models/BulbControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb/Models/BulbControl.swift -------------------------------------------------------------------------------- /LightBulb/Resources/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb/Resources/Constants.swift -------------------------------------------------------------------------------- /LightBulb/Resources/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/LightBulb/Resources/Helpers.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kushalbhavsar/LightBulb/HEAD/README.md --------------------------------------------------------------------------------