├── .DS_Store ├── README.md ├── Smart_Device_Server.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Josie.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Josie.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── Smart_Device_Server.xcscheme │ └── xcschememanagement.plist ├── Smart_Device_Server ├── AACEncoder.h ├── AACEncoder.m ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 222.png │ │ └── Contents.json │ ├── Contents.json │ └── 状态灯 │ │ ├── Contents.json │ │ ├── 准备.imageset │ │ ├── Contents.json │ │ └── 圆圈选中 (1).png │ │ ├── 已连接.imageset │ │ ├── Contents.json │ │ └── 圆圈选中 (2).png │ │ └── 未连接.imageset │ │ ├── Contents.json │ │ └── 圆圈选中.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── HJH264Encoder.h ├── HJH264Encoder.m ├── HJTCPServer.h ├── HJTCPServer.m ├── HJUDPServer.h ├── HJUDPServer.m ├── HeaderDefine.h ├── Info.plist ├── TCPSocketDefine.h ├── UDPSearchDefine.h ├── UnixInterfaceDefine.h ├── ViewController.h ├── ViewController.m └── main.m └── server_1.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/README.md -------------------------------------------------------------------------------- /Smart_Device_Server.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Smart_Device_Server.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Smart_Device_Server.xcodeproj/project.xcworkspace/xcuserdata/Josie.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server.xcodeproj/project.xcworkspace/xcuserdata/Josie.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Smart_Device_Server.xcodeproj/xcuserdata/Josie.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server.xcodeproj/xcuserdata/Josie.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Smart_Device_Server.xcodeproj/xcuserdata/Josie.xcuserdatad/xcschemes/Smart_Device_Server.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server.xcodeproj/xcuserdata/Josie.xcuserdatad/xcschemes/Smart_Device_Server.xcscheme -------------------------------------------------------------------------------- /Smart_Device_Server.xcodeproj/xcuserdata/Josie.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server.xcodeproj/xcuserdata/Josie.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Smart_Device_Server/AACEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/AACEncoder.h -------------------------------------------------------------------------------- /Smart_Device_Server/AACEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/AACEncoder.m -------------------------------------------------------------------------------- /Smart_Device_Server/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/AppDelegate.h -------------------------------------------------------------------------------- /Smart_Device_Server/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/AppDelegate.m -------------------------------------------------------------------------------- /Smart_Device_Server/Assets.xcassets/AppIcon.appiconset/222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Assets.xcassets/AppIcon.appiconset/222.png -------------------------------------------------------------------------------- /Smart_Device_Server/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Smart_Device_Server/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Smart_Device_Server/Assets.xcassets/状态灯/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Assets.xcassets/状态灯/Contents.json -------------------------------------------------------------------------------- /Smart_Device_Server/Assets.xcassets/状态灯/准备.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Assets.xcassets/状态灯/准备.imageset/Contents.json -------------------------------------------------------------------------------- /Smart_Device_Server/Assets.xcassets/状态灯/准备.imageset/圆圈选中 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Assets.xcassets/状态灯/准备.imageset/圆圈选中 (1).png -------------------------------------------------------------------------------- /Smart_Device_Server/Assets.xcassets/状态灯/已连接.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Assets.xcassets/状态灯/已连接.imageset/Contents.json -------------------------------------------------------------------------------- /Smart_Device_Server/Assets.xcassets/状态灯/已连接.imageset/圆圈选中 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Assets.xcassets/状态灯/已连接.imageset/圆圈选中 (2).png -------------------------------------------------------------------------------- /Smart_Device_Server/Assets.xcassets/状态灯/未连接.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Assets.xcassets/状态灯/未连接.imageset/Contents.json -------------------------------------------------------------------------------- /Smart_Device_Server/Assets.xcassets/状态灯/未连接.imageset/圆圈选中.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Assets.xcassets/状态灯/未连接.imageset/圆圈选中.png -------------------------------------------------------------------------------- /Smart_Device_Server/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Smart_Device_Server/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Smart_Device_Server/HJH264Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/HJH264Encoder.h -------------------------------------------------------------------------------- /Smart_Device_Server/HJH264Encoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/HJH264Encoder.m -------------------------------------------------------------------------------- /Smart_Device_Server/HJTCPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/HJTCPServer.h -------------------------------------------------------------------------------- /Smart_Device_Server/HJTCPServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/HJTCPServer.m -------------------------------------------------------------------------------- /Smart_Device_Server/HJUDPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/HJUDPServer.h -------------------------------------------------------------------------------- /Smart_Device_Server/HJUDPServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/HJUDPServer.m -------------------------------------------------------------------------------- /Smart_Device_Server/HeaderDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/HeaderDefine.h -------------------------------------------------------------------------------- /Smart_Device_Server/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/Info.plist -------------------------------------------------------------------------------- /Smart_Device_Server/TCPSocketDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/TCPSocketDefine.h -------------------------------------------------------------------------------- /Smart_Device_Server/UDPSearchDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/UDPSearchDefine.h -------------------------------------------------------------------------------- /Smart_Device_Server/UnixInterfaceDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/UnixInterfaceDefine.h -------------------------------------------------------------------------------- /Smart_Device_Server/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/ViewController.h -------------------------------------------------------------------------------- /Smart_Device_Server/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/ViewController.m -------------------------------------------------------------------------------- /Smart_Device_Server/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/Smart_Device_Server/main.m -------------------------------------------------------------------------------- /server_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmoAmoAmo/Smart_Device_Server/HEAD/server_1.gif --------------------------------------------------------------------------------