├── .DS_Store ├── .vs ├── TelloSdkCoreNet │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide └── config │ └── applicationhost.config ├── LICENSE ├── README.md ├── Tello+SDK+Readme.pdf ├── TelloApi ├── Controllers │ └── TelloController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ └── TelloSdkService.cs ├── Startup.cs ├── TelloApi.csproj ├── appsettings.Development.json ├── appsettings.json ├── bin │ ├── Any CPU │ │ └── Release │ │ │ └── netcoreapp2.0 │ │ │ ├── TelloApi.deps.json │ │ │ ├── TelloApi.runtimeconfig.dev.json │ │ │ └── TelloApi.runtimeconfig.json │ ├── Debug │ │ └── netcoreapp2.0 │ │ │ ├── TelloApi.deps.json │ │ │ ├── TelloApi.runtimeconfig.dev.json │ │ │ └── TelloApi.runtimeconfig.json │ └── Release │ │ ├── PublishOutput │ │ ├── TelloApi.deps.json │ │ ├── TelloApi.runtimeconfig.json │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── web.config │ │ └── netcoreapp2.0 │ │ ├── TelloApi.deps.json │ │ ├── TelloApi.runtimeconfig.dev.json │ │ └── TelloApi.runtimeconfig.json └── obj │ ├── Any CPU │ └── Release │ │ └── netcoreapp2.0 │ │ ├── TelloApi.AssemblyInfo.cs │ │ ├── TelloApi.csproj.CopyComplete │ │ ├── TelloApi.csproj.FileListAbsolute.txt │ │ └── microsoft.aspnetcore.mvc.razor.viewcompilation.rsp │ ├── Debug │ └── netcoreapp2.0 │ │ ├── TelloApi.AssemblyInfo.cs │ │ ├── TelloApi.csproj.CopyComplete │ │ └── TelloApi.csproj.FileListAbsolute.txt │ ├── Release │ └── netcoreapp2.0 │ │ ├── PubTmp │ │ └── Out │ │ │ ├── TelloApi.deps.json │ │ │ ├── TelloApi.runtimeconfig.json │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── web.config │ │ ├── TelloApi.AssemblyInfo.cs │ │ ├── TelloApi.csproj.CopyComplete │ │ └── TelloApi.csproj.FileListAbsolute.txt │ ├── TelloApi.csproj.nuget.g.props │ ├── TelloApi.csproj.nuget.g.targets │ └── project.assets.json ├── TelloDroneSimulator ├── Program.cs ├── TelloDroneSimulator.csproj ├── bin │ └── Debug │ │ └── netcoreapp2.0 │ │ ├── TelloDroneSimulator.deps.json │ │ ├── TelloDroneSimulator.dll │ │ ├── TelloDroneSimulator.pdb │ │ ├── TelloDroneSimulator.runtimeconfig.dev.json │ │ └── TelloDroneSimulator.runtimeconfig.json └── obj │ ├── Debug │ └── netcoreapp2.0 │ │ ├── TelloDroneSimulator.AssemblyInfo.cs │ │ ├── TelloDroneSimulator.AssemblyInfoInputs.cache │ │ ├── TelloDroneSimulator.csproj.CoreCompileInputs.cache │ │ ├── TelloDroneSimulator.csproj.FileListAbsolute.txt │ │ ├── TelloDroneSimulator.csprojResolveAssemblyReference.cache │ │ ├── TelloDroneSimulator.dll │ │ └── TelloDroneSimulator.pdb │ ├── TelloDroneSimulator.csproj.nuget.cache │ ├── TelloDroneSimulator.csproj.nuget.g.props │ ├── TelloDroneSimulator.csproj.nuget.g.targets │ └── project.assets.json ├── TelloSdkCoreNet.sln ├── TelloSdkCoreNet ├── SdkWrapper.cs ├── TelloSdkCoreNet.csproj ├── TelloUdpClient.cs ├── actions │ ├── Action.cs │ ├── BaseAction.cs │ ├── BaseActions.cs │ ├── FlipActions.cs │ ├── FlyActions.cs │ ├── IAction.cs │ ├── RotationActions.cs │ └── SpeedAction.cs ├── bin │ ├── Debug │ │ └── netcoreapp2.0 │ │ │ ├── TelloSdkCoreNet.deps.json │ │ │ ├── TelloSdkCoreNet.dll │ │ │ └── TelloSdkCoreNet.pdb │ └── Release │ │ └── netcoreapp2.0 │ │ └── TelloSdkCoreNet.deps.json ├── flightplans │ ├── FlightPlan.cs │ └── FlightPlanItem.cs └── obj │ ├── Debug │ └── netcoreapp2.0 │ │ ├── TelloSdkCoreNet.AssemblyInfo.cs │ │ ├── TelloSdkCoreNet.AssemblyInfoInputs.cache │ │ ├── TelloSdkCoreNet.csproj.CoreCompileInputs.cache │ │ ├── TelloSdkCoreNet.csproj.FileListAbsolute.txt │ │ ├── TelloSdkCoreNet.csprojResolveAssemblyReference.cache │ │ ├── TelloSdkCoreNet.dll │ │ └── TelloSdkCoreNet.pdb │ ├── Release │ └── netcoreapp2.0 │ │ ├── TelloSdkCoreNet.AssemblyInfo.cs │ │ └── TelloSdkCoreNet.csproj.FileListAbsolute.txt │ ├── TelloSdkCoreNet.csproj.nuget.cache │ ├── TelloSdkCoreNet.csproj.nuget.g.props │ ├── TelloSdkCoreNet.csproj.nuget.g.targets │ └── project.assets.json ├── TelloSdkElectron ├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── README.md ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json ├── karma.conf.js ├── main.js ├── package-lock.json ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── tellosdk │ │ │ ├── enums │ │ │ ├── event.enum.ts │ │ │ ├── flipdirections.enum.ts │ │ │ └── movedirections.enum.ts │ │ │ ├── model │ │ │ └── actions │ │ │ │ ├── cendactions.ts │ │ │ │ ├── droneaction.ts │ │ │ │ ├── flipactions.ts │ │ │ │ ├── flyactions.ts │ │ │ │ ├── queryactions.ts │ │ │ │ └── rotationactions.ts │ │ │ └── services │ │ │ ├── action.service.ts │ │ │ └── telloapi.service.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── tsconfig.json └── tslint.json └── TestApp ├── .DS_Store ├── Program.cs ├── TestApp.csproj ├── TestApp\FP_4-10-18 102058 PM_b59c89eb.json.fp ├── bin └── Debug │ └── netcoreapp2.0 │ ├── TelloSdkCoreNet.dll │ ├── TelloSdkCoreNet.pdb │ ├── TestApp.deps.json │ ├── TestApp.dll │ ├── TestApp.pdb │ ├── TestApp.runtimeconfig.dev.json │ └── TestApp.runtimeconfig.json └── obj ├── Debug └── netcoreapp2.0 │ ├── TestApp.AssemblyInfo.cs │ ├── TestApp.AssemblyInfoInputs.cache │ ├── TestApp.csproj.CopyComplete │ ├── TestApp.csproj.CoreCompileInputs.cache │ ├── TestApp.csproj.FileListAbsolute.txt │ ├── TestApp.csprojResolveAssemblyReference.cache │ ├── TestApp.dll │ └── TestApp.pdb ├── TestApp.csproj.nuget.cache ├── TestApp.csproj.nuget.g.props ├── TestApp.csproj.nuget.g.targets └── project.assets.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/.DS_Store -------------------------------------------------------------------------------- /.vs/TelloSdkCoreNet/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/.vs/TelloSdkCoreNet/v15/.suo -------------------------------------------------------------------------------- /.vs/TelloSdkCoreNet/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/TelloSdkCoreNet/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/.vs/TelloSdkCoreNet/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/README.md -------------------------------------------------------------------------------- /Tello+SDK+Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/Tello+SDK+Readme.pdf -------------------------------------------------------------------------------- /TelloApi/Controllers/TelloController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/Controllers/TelloController.cs -------------------------------------------------------------------------------- /TelloApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/Program.cs -------------------------------------------------------------------------------- /TelloApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /TelloApi/Services/TelloSdkService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/Services/TelloSdkService.cs -------------------------------------------------------------------------------- /TelloApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/Startup.cs -------------------------------------------------------------------------------- /TelloApi/TelloApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/TelloApi.csproj -------------------------------------------------------------------------------- /TelloApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/appsettings.Development.json -------------------------------------------------------------------------------- /TelloApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/appsettings.json -------------------------------------------------------------------------------- /TelloApi/bin/Any CPU/Release/netcoreapp2.0/TelloApi.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Any CPU/Release/netcoreapp2.0/TelloApi.deps.json -------------------------------------------------------------------------------- /TelloApi/bin/Any CPU/Release/netcoreapp2.0/TelloApi.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Any CPU/Release/netcoreapp2.0/TelloApi.runtimeconfig.dev.json -------------------------------------------------------------------------------- /TelloApi/bin/Any CPU/Release/netcoreapp2.0/TelloApi.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Any CPU/Release/netcoreapp2.0/TelloApi.runtimeconfig.json -------------------------------------------------------------------------------- /TelloApi/bin/Debug/netcoreapp2.0/TelloApi.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Debug/netcoreapp2.0/TelloApi.deps.json -------------------------------------------------------------------------------- /TelloApi/bin/Debug/netcoreapp2.0/TelloApi.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Debug/netcoreapp2.0/TelloApi.runtimeconfig.dev.json -------------------------------------------------------------------------------- /TelloApi/bin/Debug/netcoreapp2.0/TelloApi.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Debug/netcoreapp2.0/TelloApi.runtimeconfig.json -------------------------------------------------------------------------------- /TelloApi/bin/Release/PublishOutput/TelloApi.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Release/PublishOutput/TelloApi.deps.json -------------------------------------------------------------------------------- /TelloApi/bin/Release/PublishOutput/TelloApi.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Release/PublishOutput/TelloApi.runtimeconfig.json -------------------------------------------------------------------------------- /TelloApi/bin/Release/PublishOutput/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Release/PublishOutput/appsettings.Development.json -------------------------------------------------------------------------------- /TelloApi/bin/Release/PublishOutput/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Release/PublishOutput/appsettings.json -------------------------------------------------------------------------------- /TelloApi/bin/Release/PublishOutput/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Release/PublishOutput/web.config -------------------------------------------------------------------------------- /TelloApi/bin/Release/netcoreapp2.0/TelloApi.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Release/netcoreapp2.0/TelloApi.deps.json -------------------------------------------------------------------------------- /TelloApi/bin/Release/netcoreapp2.0/TelloApi.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Release/netcoreapp2.0/TelloApi.runtimeconfig.dev.json -------------------------------------------------------------------------------- /TelloApi/bin/Release/netcoreapp2.0/TelloApi.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/bin/Release/netcoreapp2.0/TelloApi.runtimeconfig.json -------------------------------------------------------------------------------- /TelloApi/obj/Any CPU/Release/netcoreapp2.0/TelloApi.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/Any CPU/Release/netcoreapp2.0/TelloApi.AssemblyInfo.cs -------------------------------------------------------------------------------- /TelloApi/obj/Any CPU/Release/netcoreapp2.0/TelloApi.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TelloApi/obj/Any CPU/Release/netcoreapp2.0/TelloApi.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/Any CPU/Release/netcoreapp2.0/TelloApi.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /TelloApi/obj/Any CPU/Release/netcoreapp2.0/microsoft.aspnetcore.mvc.razor.viewcompilation.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/Any CPU/Release/netcoreapp2.0/microsoft.aspnetcore.mvc.razor.viewcompilation.rsp -------------------------------------------------------------------------------- /TelloApi/obj/Debug/netcoreapp2.0/TelloApi.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/Debug/netcoreapp2.0/TelloApi.AssemblyInfo.cs -------------------------------------------------------------------------------- /TelloApi/obj/Debug/netcoreapp2.0/TelloApi.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TelloApi/obj/Debug/netcoreapp2.0/TelloApi.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/Debug/netcoreapp2.0/TelloApi.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /TelloApi/obj/Release/netcoreapp2.0/PubTmp/Out/TelloApi.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/Release/netcoreapp2.0/PubTmp/Out/TelloApi.deps.json -------------------------------------------------------------------------------- /TelloApi/obj/Release/netcoreapp2.0/PubTmp/Out/TelloApi.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/Release/netcoreapp2.0/PubTmp/Out/TelloApi.runtimeconfig.json -------------------------------------------------------------------------------- /TelloApi/obj/Release/netcoreapp2.0/PubTmp/Out/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/Release/netcoreapp2.0/PubTmp/Out/appsettings.Development.json -------------------------------------------------------------------------------- /TelloApi/obj/Release/netcoreapp2.0/PubTmp/Out/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/Release/netcoreapp2.0/PubTmp/Out/appsettings.json -------------------------------------------------------------------------------- /TelloApi/obj/Release/netcoreapp2.0/PubTmp/Out/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/Release/netcoreapp2.0/PubTmp/Out/web.config -------------------------------------------------------------------------------- /TelloApi/obj/Release/netcoreapp2.0/TelloApi.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/Release/netcoreapp2.0/TelloApi.AssemblyInfo.cs -------------------------------------------------------------------------------- /TelloApi/obj/Release/netcoreapp2.0/TelloApi.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TelloApi/obj/Release/netcoreapp2.0/TelloApi.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/Release/netcoreapp2.0/TelloApi.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /TelloApi/obj/TelloApi.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/TelloApi.csproj.nuget.g.props -------------------------------------------------------------------------------- /TelloApi/obj/TelloApi.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/TelloApi.csproj.nuget.g.targets -------------------------------------------------------------------------------- /TelloApi/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloApi/obj/project.assets.json -------------------------------------------------------------------------------- /TelloDroneSimulator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/Program.cs -------------------------------------------------------------------------------- /TelloDroneSimulator/TelloDroneSimulator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/TelloDroneSimulator.csproj -------------------------------------------------------------------------------- /TelloDroneSimulator/bin/Debug/netcoreapp2.0/TelloDroneSimulator.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/bin/Debug/netcoreapp2.0/TelloDroneSimulator.deps.json -------------------------------------------------------------------------------- /TelloDroneSimulator/bin/Debug/netcoreapp2.0/TelloDroneSimulator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/bin/Debug/netcoreapp2.0/TelloDroneSimulator.dll -------------------------------------------------------------------------------- /TelloDroneSimulator/bin/Debug/netcoreapp2.0/TelloDroneSimulator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/bin/Debug/netcoreapp2.0/TelloDroneSimulator.pdb -------------------------------------------------------------------------------- /TelloDroneSimulator/bin/Debug/netcoreapp2.0/TelloDroneSimulator.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/bin/Debug/netcoreapp2.0/TelloDroneSimulator.runtimeconfig.dev.json -------------------------------------------------------------------------------- /TelloDroneSimulator/bin/Debug/netcoreapp2.0/TelloDroneSimulator.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/bin/Debug/netcoreapp2.0/TelloDroneSimulator.runtimeconfig.json -------------------------------------------------------------------------------- /TelloDroneSimulator/obj/Debug/netcoreapp2.0/TelloDroneSimulator.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/obj/Debug/netcoreapp2.0/TelloDroneSimulator.AssemblyInfo.cs -------------------------------------------------------------------------------- /TelloDroneSimulator/obj/Debug/netcoreapp2.0/TelloDroneSimulator.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fcb20dd656b3d9bbd9cdae8f1fe3c9f60f5d8dbb 2 | -------------------------------------------------------------------------------- /TelloDroneSimulator/obj/Debug/netcoreapp2.0/TelloDroneSimulator.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c9de5cb69078e3b80b52f91e442b88a6b9273bdc 2 | -------------------------------------------------------------------------------- /TelloDroneSimulator/obj/Debug/netcoreapp2.0/TelloDroneSimulator.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/obj/Debug/netcoreapp2.0/TelloDroneSimulator.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /TelloDroneSimulator/obj/Debug/netcoreapp2.0/TelloDroneSimulator.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/obj/Debug/netcoreapp2.0/TelloDroneSimulator.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /TelloDroneSimulator/obj/Debug/netcoreapp2.0/TelloDroneSimulator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/obj/Debug/netcoreapp2.0/TelloDroneSimulator.dll -------------------------------------------------------------------------------- /TelloDroneSimulator/obj/Debug/netcoreapp2.0/TelloDroneSimulator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/obj/Debug/netcoreapp2.0/TelloDroneSimulator.pdb -------------------------------------------------------------------------------- /TelloDroneSimulator/obj/TelloDroneSimulator.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/obj/TelloDroneSimulator.csproj.nuget.cache -------------------------------------------------------------------------------- /TelloDroneSimulator/obj/TelloDroneSimulator.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/obj/TelloDroneSimulator.csproj.nuget.g.props -------------------------------------------------------------------------------- /TelloDroneSimulator/obj/TelloDroneSimulator.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/obj/TelloDroneSimulator.csproj.nuget.g.targets -------------------------------------------------------------------------------- /TelloDroneSimulator/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloDroneSimulator/obj/project.assets.json -------------------------------------------------------------------------------- /TelloSdkCoreNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet.sln -------------------------------------------------------------------------------- /TelloSdkCoreNet/SdkWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/SdkWrapper.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/TelloSdkCoreNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/TelloSdkCoreNet.csproj -------------------------------------------------------------------------------- /TelloSdkCoreNet/TelloUdpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/TelloUdpClient.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/actions/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/actions/Action.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/actions/BaseAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/actions/BaseAction.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/actions/BaseActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/actions/BaseActions.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/actions/FlipActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/actions/FlipActions.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/actions/FlyActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/actions/FlyActions.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/actions/IAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/actions/IAction.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/actions/RotationActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/actions/RotationActions.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/actions/SpeedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/actions/SpeedAction.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/bin/Debug/netcoreapp2.0/TelloSdkCoreNet.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/bin/Debug/netcoreapp2.0/TelloSdkCoreNet.deps.json -------------------------------------------------------------------------------- /TelloSdkCoreNet/bin/Debug/netcoreapp2.0/TelloSdkCoreNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/bin/Debug/netcoreapp2.0/TelloSdkCoreNet.dll -------------------------------------------------------------------------------- /TelloSdkCoreNet/bin/Debug/netcoreapp2.0/TelloSdkCoreNet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/bin/Debug/netcoreapp2.0/TelloSdkCoreNet.pdb -------------------------------------------------------------------------------- /TelloSdkCoreNet/bin/Release/netcoreapp2.0/TelloSdkCoreNet.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/bin/Release/netcoreapp2.0/TelloSdkCoreNet.deps.json -------------------------------------------------------------------------------- /TelloSdkCoreNet/flightplans/FlightPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/flightplans/FlightPlan.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/flightplans/FlightPlanItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/flightplans/FlightPlanItem.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/Debug/netcoreapp2.0/TelloSdkCoreNet.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/obj/Debug/netcoreapp2.0/TelloSdkCoreNet.AssemblyInfo.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/Debug/netcoreapp2.0/TelloSdkCoreNet.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 42df8537ac5fae9835f0a91085c6524b47e9abba 2 | -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/Debug/netcoreapp2.0/TelloSdkCoreNet.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4482a5d84301f2b41ce2c3e44249cb6c851afcd8 2 | -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/Debug/netcoreapp2.0/TelloSdkCoreNet.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/obj/Debug/netcoreapp2.0/TelloSdkCoreNet.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/Debug/netcoreapp2.0/TelloSdkCoreNet.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/obj/Debug/netcoreapp2.0/TelloSdkCoreNet.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/Debug/netcoreapp2.0/TelloSdkCoreNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/obj/Debug/netcoreapp2.0/TelloSdkCoreNet.dll -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/Debug/netcoreapp2.0/TelloSdkCoreNet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/obj/Debug/netcoreapp2.0/TelloSdkCoreNet.pdb -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/Release/netcoreapp2.0/TelloSdkCoreNet.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/obj/Release/netcoreapp2.0/TelloSdkCoreNet.AssemblyInfo.cs -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/Release/netcoreapp2.0/TelloSdkCoreNet.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/obj/Release/netcoreapp2.0/TelloSdkCoreNet.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/TelloSdkCoreNet.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/obj/TelloSdkCoreNet.csproj.nuget.cache -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/TelloSdkCoreNet.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/obj/TelloSdkCoreNet.csproj.nuget.g.props -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/TelloSdkCoreNet.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/obj/TelloSdkCoreNet.csproj.nuget.g.targets -------------------------------------------------------------------------------- /TelloSdkCoreNet/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkCoreNet/obj/project.assets.json -------------------------------------------------------------------------------- /TelloSdkElectron/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/.angular-cli.json -------------------------------------------------------------------------------- /TelloSdkElectron/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/.editorconfig -------------------------------------------------------------------------------- /TelloSdkElectron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/.gitignore -------------------------------------------------------------------------------- /TelloSdkElectron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/README.md -------------------------------------------------------------------------------- /TelloSdkElectron/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /TelloSdkElectron/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/e2e/app.po.ts -------------------------------------------------------------------------------- /TelloSdkElectron/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /TelloSdkElectron/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/karma.conf.js -------------------------------------------------------------------------------- /TelloSdkElectron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/main.js -------------------------------------------------------------------------------- /TelloSdkElectron/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/package-lock.json -------------------------------------------------------------------------------- /TelloSdkElectron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/package.json -------------------------------------------------------------------------------- /TelloSdkElectron/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/protractor.conf.js -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/app.component.html -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/app.component.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/app.module.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/tellosdk/enums/event.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/tellosdk/enums/event.enum.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/tellosdk/enums/flipdirections.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/tellosdk/enums/flipdirections.enum.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/tellosdk/enums/movedirections.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/tellosdk/enums/movedirections.enum.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/tellosdk/model/actions/cendactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/tellosdk/model/actions/cendactions.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/tellosdk/model/actions/droneaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/tellosdk/model/actions/droneaction.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/tellosdk/model/actions/flipactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/tellosdk/model/actions/flipactions.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/tellosdk/model/actions/flyactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/tellosdk/model/actions/flyactions.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/tellosdk/model/actions/queryactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/tellosdk/model/actions/queryactions.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/tellosdk/model/actions/rotationactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/tellosdk/model/actions/rotationactions.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/tellosdk/services/action.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/tellosdk/services/action.service.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/app/tellosdk/services/telloapi.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/app/tellosdk/services/telloapi.service.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TelloSdkElectron/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /TelloSdkElectron/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/environments/environment.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/favicon.ico -------------------------------------------------------------------------------- /TelloSdkElectron/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/index.html -------------------------------------------------------------------------------- /TelloSdkElectron/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/main.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/polyfills.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/styles.css -------------------------------------------------------------------------------- /TelloSdkElectron/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/test.ts -------------------------------------------------------------------------------- /TelloSdkElectron/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/tsconfig.app.json -------------------------------------------------------------------------------- /TelloSdkElectron/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/tsconfig.spec.json -------------------------------------------------------------------------------- /TelloSdkElectron/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/src/typings.d.ts -------------------------------------------------------------------------------- /TelloSdkElectron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/tsconfig.json -------------------------------------------------------------------------------- /TelloSdkElectron/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TelloSdkElectron/tslint.json -------------------------------------------------------------------------------- /TestApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/.DS_Store -------------------------------------------------------------------------------- /TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/Program.cs -------------------------------------------------------------------------------- /TestApp/TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/TestApp.csproj -------------------------------------------------------------------------------- /TestApp/TestApp\FP_4-10-18 102058 PM_b59c89eb.json.fp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/TestApp\FP_4-10-18 102058 PM_b59c89eb.json.fp -------------------------------------------------------------------------------- /TestApp/bin/Debug/netcoreapp2.0/TelloSdkCoreNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/bin/Debug/netcoreapp2.0/TelloSdkCoreNet.dll -------------------------------------------------------------------------------- /TestApp/bin/Debug/netcoreapp2.0/TelloSdkCoreNet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/bin/Debug/netcoreapp2.0/TelloSdkCoreNet.pdb -------------------------------------------------------------------------------- /TestApp/bin/Debug/netcoreapp2.0/TestApp.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/bin/Debug/netcoreapp2.0/TestApp.deps.json -------------------------------------------------------------------------------- /TestApp/bin/Debug/netcoreapp2.0/TestApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/bin/Debug/netcoreapp2.0/TestApp.dll -------------------------------------------------------------------------------- /TestApp/bin/Debug/netcoreapp2.0/TestApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/bin/Debug/netcoreapp2.0/TestApp.pdb -------------------------------------------------------------------------------- /TestApp/bin/Debug/netcoreapp2.0/TestApp.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/bin/Debug/netcoreapp2.0/TestApp.runtimeconfig.dev.json -------------------------------------------------------------------------------- /TestApp/bin/Debug/netcoreapp2.0/TestApp.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/bin/Debug/netcoreapp2.0/TestApp.runtimeconfig.json -------------------------------------------------------------------------------- /TestApp/obj/Debug/netcoreapp2.0/TestApp.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/obj/Debug/netcoreapp2.0/TestApp.AssemblyInfo.cs -------------------------------------------------------------------------------- /TestApp/obj/Debug/netcoreapp2.0/TestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b736558a58c1b58299e6f0bdedf618636e2cf4ab 2 | -------------------------------------------------------------------------------- /TestApp/obj/Debug/netcoreapp2.0/TestApp.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestApp/obj/Debug/netcoreapp2.0/TestApp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6e13ee1157cdc8be771efe2ac7125c40208922da 2 | -------------------------------------------------------------------------------- /TestApp/obj/Debug/netcoreapp2.0/TestApp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/obj/Debug/netcoreapp2.0/TestApp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /TestApp/obj/Debug/netcoreapp2.0/TestApp.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/obj/Debug/netcoreapp2.0/TestApp.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /TestApp/obj/Debug/netcoreapp2.0/TestApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/obj/Debug/netcoreapp2.0/TestApp.dll -------------------------------------------------------------------------------- /TestApp/obj/Debug/netcoreapp2.0/TestApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/obj/Debug/netcoreapp2.0/TestApp.pdb -------------------------------------------------------------------------------- /TestApp/obj/TestApp.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/obj/TestApp.csproj.nuget.cache -------------------------------------------------------------------------------- /TestApp/obj/TestApp.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/obj/TestApp.csproj.nuget.g.props -------------------------------------------------------------------------------- /TestApp/obj/TestApp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/obj/TestApp.csproj.nuget.g.targets -------------------------------------------------------------------------------- /TestApp/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8bitbytes/TelloSdkCoreNet/HEAD/TestApp/obj/project.assets.json --------------------------------------------------------------------------------