├── .gitignore ├── 4-1_Scan └── BLEScanExample │ ├── BLEScanExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLEScanExample │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── 4-2_Connect └── BLEConnectExample │ ├── BLEConnectExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLEConnectExample │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── 4-3_DiscoverServices └── BLEDiscoverServicesExample │ ├── BLEDiscoverServicesExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLEDiscoverServicesExample │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── 4-4_Read └── BLEReadExample │ ├── BLEReadExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLEReadExample │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── 4-5_Write └── BLEWriteExample │ ├── BLEWriteExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLEWriteExample │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── 4-6_Notify └── BLENotifyExample │ ├── BLENotifyExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLENotifyExample │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── 5-1_Advertise └── BLEAdvertiseExample │ ├── BLEAdvertiseExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLEAdvertiseExample │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── 5-2_AddService └── BLEAddServiceExample │ ├── BLEAddServiceExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLEAddServiceExample │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── 5-3_AdvertiseService └── BLEAdvertiseServiceExample │ ├── BLEAdvertiseServiceExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLEAdvertiseServiceExample │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── 5-4_ReadRequest ├── BLEReadErrorExamplePeripheral │ ├── BLEReadExamplePeripheral.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── BLEReadExamplePeripheral.xccheckout │ │ │ └── IDEWorkspaceChecks.plist │ └── BLEReadExamplePeripheral │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── BLEReadExampleCentral │ ├── BLEReadExampleCentral.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── BLEReadExampleCentral.xccheckout │ │ │ └── IDEWorkspaceChecks.plist │ └── BLEReadExampleCentral │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m └── BLEReadExamplePeripheral │ ├── BLEReadExamplePeripheral.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLEReadExamplePeripheral │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── 5-5_WriteRequest ├── BLEWriteExampleCentral │ ├── BLEWriteExampleCentral.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── BLEWriteExampleCentral.xccheckout │ │ │ └── IDEWorkspaceChecks.plist │ └── BLEWriteExampleCentral │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m └── BLEWriteExamplePeripheral │ ├── BLEWriteExamplePeripheral.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLEWriteExamplePeripheral │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── 5-6_Notify ├── BLENotifyExampleCentral │ ├── BLENotifyExampleCentral.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── BLENotifyExampleCentral.xccheckout │ │ │ └── IDEWorkspaceChecks.plist │ └── BLENotifyExampleCentral │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m └── BLENotifyExamplePeripheral │ ├── BLENotifyExamplePeripheral.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── BLENotifyExamplePeripheral │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── Common ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── Icon.png │ ├── Contents.json │ └── bluetooth_book.imageset │ │ ├── Contents.json │ │ └── bluetooth_book.pdf ├── BLEAppearance.h ├── BLECommonButton.h └── BLECommonButton.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /4-1_Scan/BLEScanExample/BLEScanExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-1_Scan/BLEScanExample/BLEScanExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /4-1_Scan/BLEScanExample/BLEScanExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-1_Scan/BLEScanExample/BLEScanExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /4-1_Scan/BLEScanExample/BLEScanExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-1_Scan/BLEScanExample/BLEScanExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /4-1_Scan/BLEScanExample/BLEScanExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-1_Scan/BLEScanExample/BLEScanExample/AppDelegate.swift -------------------------------------------------------------------------------- /4-1_Scan/BLEScanExample/BLEScanExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-1_Scan/BLEScanExample/BLEScanExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /4-1_Scan/BLEScanExample/BLEScanExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-1_Scan/BLEScanExample/BLEScanExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /4-1_Scan/BLEScanExample/BLEScanExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-1_Scan/BLEScanExample/BLEScanExample/Info.plist -------------------------------------------------------------------------------- /4-1_Scan/BLEScanExample/BLEScanExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-1_Scan/BLEScanExample/BLEScanExample/SceneDelegate.swift -------------------------------------------------------------------------------- /4-1_Scan/BLEScanExample/BLEScanExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-1_Scan/BLEScanExample/BLEScanExample/ViewController.swift -------------------------------------------------------------------------------- /4-2_Connect/BLEConnectExample/BLEConnectExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-2_Connect/BLEConnectExample/BLEConnectExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /4-2_Connect/BLEConnectExample/BLEConnectExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-2_Connect/BLEConnectExample/BLEConnectExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /4-2_Connect/BLEConnectExample/BLEConnectExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-2_Connect/BLEConnectExample/BLEConnectExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /4-2_Connect/BLEConnectExample/BLEConnectExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-2_Connect/BLEConnectExample/BLEConnectExample/AppDelegate.swift -------------------------------------------------------------------------------- /4-2_Connect/BLEConnectExample/BLEConnectExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-2_Connect/BLEConnectExample/BLEConnectExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /4-2_Connect/BLEConnectExample/BLEConnectExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-2_Connect/BLEConnectExample/BLEConnectExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /4-2_Connect/BLEConnectExample/BLEConnectExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-2_Connect/BLEConnectExample/BLEConnectExample/Info.plist -------------------------------------------------------------------------------- /4-2_Connect/BLEConnectExample/BLEConnectExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-2_Connect/BLEConnectExample/BLEConnectExample/SceneDelegate.swift -------------------------------------------------------------------------------- /4-2_Connect/BLEConnectExample/BLEConnectExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-2_Connect/BLEConnectExample/BLEConnectExample/ViewController.swift -------------------------------------------------------------------------------- /4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample/AppDelegate.swift -------------------------------------------------------------------------------- /4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample/Info.plist -------------------------------------------------------------------------------- /4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample/SceneDelegate.swift -------------------------------------------------------------------------------- /4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-3_DiscoverServices/BLEDiscoverServicesExample/BLEDiscoverServicesExample/ViewController.swift -------------------------------------------------------------------------------- /4-4_Read/BLEReadExample/BLEReadExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-4_Read/BLEReadExample/BLEReadExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /4-4_Read/BLEReadExample/BLEReadExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-4_Read/BLEReadExample/BLEReadExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /4-4_Read/BLEReadExample/BLEReadExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-4_Read/BLEReadExample/BLEReadExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /4-4_Read/BLEReadExample/BLEReadExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-4_Read/BLEReadExample/BLEReadExample/AppDelegate.swift -------------------------------------------------------------------------------- /4-4_Read/BLEReadExample/BLEReadExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-4_Read/BLEReadExample/BLEReadExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /4-4_Read/BLEReadExample/BLEReadExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-4_Read/BLEReadExample/BLEReadExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /4-4_Read/BLEReadExample/BLEReadExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-4_Read/BLEReadExample/BLEReadExample/Info.plist -------------------------------------------------------------------------------- /4-4_Read/BLEReadExample/BLEReadExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-4_Read/BLEReadExample/BLEReadExample/SceneDelegate.swift -------------------------------------------------------------------------------- /4-4_Read/BLEReadExample/BLEReadExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-4_Read/BLEReadExample/BLEReadExample/ViewController.swift -------------------------------------------------------------------------------- /4-5_Write/BLEWriteExample/BLEWriteExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-5_Write/BLEWriteExample/BLEWriteExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /4-5_Write/BLEWriteExample/BLEWriteExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-5_Write/BLEWriteExample/BLEWriteExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /4-5_Write/BLEWriteExample/BLEWriteExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-5_Write/BLEWriteExample/BLEWriteExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /4-5_Write/BLEWriteExample/BLEWriteExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-5_Write/BLEWriteExample/BLEWriteExample/AppDelegate.swift -------------------------------------------------------------------------------- /4-5_Write/BLEWriteExample/BLEWriteExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-5_Write/BLEWriteExample/BLEWriteExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /4-5_Write/BLEWriteExample/BLEWriteExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-5_Write/BLEWriteExample/BLEWriteExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /4-5_Write/BLEWriteExample/BLEWriteExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-5_Write/BLEWriteExample/BLEWriteExample/Info.plist -------------------------------------------------------------------------------- /4-5_Write/BLEWriteExample/BLEWriteExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-5_Write/BLEWriteExample/BLEWriteExample/SceneDelegate.swift -------------------------------------------------------------------------------- /4-5_Write/BLEWriteExample/BLEWriteExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-5_Write/BLEWriteExample/BLEWriteExample/ViewController.swift -------------------------------------------------------------------------------- /4-6_Notify/BLENotifyExample/BLENotifyExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-6_Notify/BLENotifyExample/BLENotifyExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /4-6_Notify/BLENotifyExample/BLENotifyExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-6_Notify/BLENotifyExample/BLENotifyExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /4-6_Notify/BLENotifyExample/BLENotifyExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-6_Notify/BLENotifyExample/BLENotifyExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /4-6_Notify/BLENotifyExample/BLENotifyExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-6_Notify/BLENotifyExample/BLENotifyExample/AppDelegate.swift -------------------------------------------------------------------------------- /4-6_Notify/BLENotifyExample/BLENotifyExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-6_Notify/BLENotifyExample/BLENotifyExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /4-6_Notify/BLENotifyExample/BLENotifyExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-6_Notify/BLENotifyExample/BLENotifyExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /4-6_Notify/BLENotifyExample/BLENotifyExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-6_Notify/BLENotifyExample/BLENotifyExample/Info.plist -------------------------------------------------------------------------------- /4-6_Notify/BLENotifyExample/BLENotifyExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-6_Notify/BLENotifyExample/BLENotifyExample/SceneDelegate.swift -------------------------------------------------------------------------------- /4-6_Notify/BLENotifyExample/BLENotifyExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/4-6_Notify/BLENotifyExample/BLENotifyExample/ViewController.swift -------------------------------------------------------------------------------- /5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample/AppDelegate.swift -------------------------------------------------------------------------------- /5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample/Info.plist -------------------------------------------------------------------------------- /5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample/SceneDelegate.swift -------------------------------------------------------------------------------- /5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-1_Advertise/BLEAdvertiseExample/BLEAdvertiseExample/ViewController.swift -------------------------------------------------------------------------------- /5-2_AddService/BLEAddServiceExample/BLEAddServiceExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-2_AddService/BLEAddServiceExample/BLEAddServiceExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /5-2_AddService/BLEAddServiceExample/BLEAddServiceExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-2_AddService/BLEAddServiceExample/BLEAddServiceExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /5-2_AddService/BLEAddServiceExample/BLEAddServiceExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-2_AddService/BLEAddServiceExample/BLEAddServiceExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /5-2_AddService/BLEAddServiceExample/BLEAddServiceExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-2_AddService/BLEAddServiceExample/BLEAddServiceExample/AppDelegate.swift -------------------------------------------------------------------------------- /5-2_AddService/BLEAddServiceExample/BLEAddServiceExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-2_AddService/BLEAddServiceExample/BLEAddServiceExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /5-2_AddService/BLEAddServiceExample/BLEAddServiceExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-2_AddService/BLEAddServiceExample/BLEAddServiceExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /5-2_AddService/BLEAddServiceExample/BLEAddServiceExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-2_AddService/BLEAddServiceExample/BLEAddServiceExample/Info.plist -------------------------------------------------------------------------------- /5-2_AddService/BLEAddServiceExample/BLEAddServiceExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-2_AddService/BLEAddServiceExample/BLEAddServiceExample/SceneDelegate.swift -------------------------------------------------------------------------------- /5-2_AddService/BLEAddServiceExample/BLEAddServiceExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-2_AddService/BLEAddServiceExample/BLEAddServiceExample/ViewController.swift -------------------------------------------------------------------------------- /5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample/AppDelegate.swift -------------------------------------------------------------------------------- /5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample/Info.plist -------------------------------------------------------------------------------- /5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample/SceneDelegate.swift -------------------------------------------------------------------------------- /5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-3_AdvertiseService/BLEAdvertiseServiceExample/BLEAdvertiseServiceExample/ViewController.swift -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.xcworkspace/xcshareddata/BLEReadExamplePeripheral.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.xcworkspace/xcshareddata/BLEReadExamplePeripheral.xccheckout -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/AppDelegate.h -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/AppDelegate.m -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/Info.plist -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/ViewController.h -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/ViewController.m -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadErrorExamplePeripheral/BLEReadExamplePeripheral/main.m -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral.xcodeproj/project.xcworkspace/xcshareddata/BLEReadExampleCentral.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral.xcodeproj/project.xcworkspace/xcshareddata/BLEReadExampleCentral.xccheckout -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/AppDelegate.h -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/AppDelegate.m -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/Info.plist -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/ViewController.h -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/ViewController.m -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExampleCentral/BLEReadExampleCentral/main.m -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral/AppDelegate.swift -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral/Info.plist -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral/SceneDelegate.swift -------------------------------------------------------------------------------- /5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-4_ReadRequest/BLEReadExamplePeripheral/BLEReadExamplePeripheral/ViewController.swift -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral.xcodeproj/project.xcworkspace/xcshareddata/BLEWriteExampleCentral.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral.xcodeproj/project.xcworkspace/xcshareddata/BLEWriteExampleCentral.xccheckout -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/AppDelegate.h -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/AppDelegate.m -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/Info.plist -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/ViewController.h -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/ViewController.m -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExampleCentral/BLEWriteExampleCentral/main.m -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral/AppDelegate.swift -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral/Info.plist -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral/SceneDelegate.swift -------------------------------------------------------------------------------- /5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-5_WriteRequest/BLEWriteExamplePeripheral/BLEWriteExamplePeripheral/ViewController.swift -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral.xcodeproj/project.xcworkspace/xcshareddata/BLENotifyExampleCentral.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral.xcodeproj/project.xcworkspace/xcshareddata/BLENotifyExampleCentral.xccheckout -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/AppDelegate.h -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/AppDelegate.m -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/Info.plist -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/ViewController.h -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/ViewController.m -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExampleCentral/BLENotifyExampleCentral/main.m -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral/AppDelegate.swift -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral/Info.plist -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral/SceneDelegate.swift -------------------------------------------------------------------------------- /5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/5-6_Notify/BLENotifyExamplePeripheral/BLENotifyExamplePeripheral/ViewController.swift -------------------------------------------------------------------------------- /Common/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/Common/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Common/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/Common/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Common/Assets.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/Common/Assets.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /Common/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/Common/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Common/Assets.xcassets/bluetooth_book.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/Common/Assets.xcassets/bluetooth_book.imageset/Contents.json -------------------------------------------------------------------------------- /Common/Assets.xcassets/bluetooth_book.imageset/bluetooth_book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/Common/Assets.xcassets/bluetooth_book.imageset/bluetooth_book.pdf -------------------------------------------------------------------------------- /Common/BLEAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/Common/BLEAppearance.h -------------------------------------------------------------------------------- /Common/BLECommonButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/Common/BLECommonButton.h -------------------------------------------------------------------------------- /Common/BLECommonButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/Common/BLECommonButton.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shu223/iOS-BLE-Tutorials/HEAD/README.md --------------------------------------------------------------------------------