├── .gitignore ├── README.markdown ├── doc ├── Installing_Debian_on_BeagleBoard.markdown ├── LTC_Diagnostic_Procedure.markdown ├── Launch_Tower_Computer_Setup.markdown ├── Launch_Tower_Instructions.markdown ├── System_Power_Draw.txt ├── diagrams │ ├── Connectors_Polarity.png │ ├── LTC_Component_Map.svg │ ├── LTC_High_Level_Diagram.svg │ ├── LTC_connections_schematic.png │ ├── Phidgets.png │ ├── Powerpole_Connection.png │ └── Umbilical_Connection.png ├── powerpoint │ ├── PSAS-Rocket_Ready_Schematic.pdf │ ├── PSAS-Rocket_Ready_Schematic.ppt │ ├── PSAS_Launch_Tower_Upgrade-PRESENTATION.pdf │ ├── PSAS_Launch_Tower_Upgrade-PRESENTATION.ppt │ ├── PSAS_Launch_Tower_Upgrade.pdf │ └── PSAS_Launch_Tower_Upgrade.ppt └── vendor │ ├── Phidgets │ ├── 1019_1 - Product_Manual.pdf │ ├── 1024 - Temp Sensor - Code Samples │ │ ├── CSharp_2.1.8.20120503.zip │ │ └── CSharp_2.1.8.20120503 │ │ │ └── CSharp │ │ │ ├── Accelerometer-full.exe │ │ │ ├── AccelerometerExamples │ │ │ ├── Accelerometer-full │ │ │ │ ├── Accelerometer-full.sln │ │ │ │ ├── Accelerometer-full │ │ │ │ │ ├── 1059_0.ico │ │ │ │ │ ├── Accelerometer-full.csproj │ │ │ │ │ ├── Accelerometer-full_vs2008.csproj │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── Accelerometer-full_vs2008.sln │ │ │ ├── Accelerometer-graphical │ │ │ │ ├── Accelerometer-graphical.sln │ │ │ │ └── Accelerometer-graphical │ │ │ │ │ ├── Accelerometer-graphical.csproj │ │ │ │ │ ├── Accelerometer-graphical_vs2008.csproj │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ └── Accelerometer-simple │ │ │ │ ├── Accelerometer-simple.sln │ │ │ │ └── Accelerometer-simple │ │ │ │ ├── Accelerometer-simple.csproj │ │ │ │ ├── Accelerometer-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── AdvancedServo-full.exe │ │ │ ├── AdvancedServoExamples │ │ │ ├── AdvancedServo-full │ │ │ │ ├── AdvancedServo-full.sln │ │ │ │ ├── AdvancedServo-full │ │ │ │ │ ├── 1061_0.ico │ │ │ │ │ ├── AdvancedServo-full.csproj │ │ │ │ │ ├── AdvancedServo-full_vs2008.csproj │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── AdvancedServo-full_vs2008.sln │ │ │ └── AdvancedServo-simple │ │ │ │ ├── AdvancedServo-simple.sln │ │ │ │ └── AdvancedServo-simple │ │ │ │ ├── AdvancedServo-simple.csproj │ │ │ │ ├── AdvancedServo-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── AllExamples │ │ │ ├── AllExamples.sln │ │ │ └── AllExamples_vs2008.sln │ │ │ ├── Analog-full.exe │ │ │ ├── AnalogExamples │ │ │ ├── Analog-full │ │ │ │ ├── Analog-full.sln │ │ │ │ ├── Analog-full │ │ │ │ │ ├── Analog-full.csproj │ │ │ │ │ ├── Analog-full_vs2008.csproj │ │ │ │ │ ├── Analog.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.designer.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ ├── TextInputBox.designer.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── Analog-full_vs2008.sln │ │ │ └── Analog-simple │ │ │ │ ├── Analog-simple.sln │ │ │ │ └── Analog-simple │ │ │ │ ├── Analog-simple.csproj │ │ │ │ ├── Analog-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Bridge-full.exe │ │ │ ├── BridgeExamples │ │ │ ├── Bridge-full │ │ │ │ ├── Bridge-full.sln │ │ │ │ ├── Bridge-full │ │ │ │ │ ├── Bridge-full.csproj │ │ │ │ │ ├── Bridge-full.sln │ │ │ │ │ ├── Bridge-full.suo │ │ │ │ │ ├── Bridge-full_vs2008.csproj │ │ │ │ │ ├── Bridge.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.designer.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ ├── TextInputBox.designer.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── Bridge-full_vs2008.sln │ │ │ └── Bridge-simple │ │ │ │ ├── Bridge-simple.sln │ │ │ │ └── Bridge-simple │ │ │ │ ├── Bridge-simple.csproj │ │ │ │ ├── Bridge-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Encoder-full.exe │ │ │ ├── EncoderExamples │ │ │ ├── Encoder-full │ │ │ │ ├── Encoder-full.sln │ │ │ │ ├── Encoder-full │ │ │ │ │ ├── 1052_0.ico │ │ │ │ │ ├── Encoder-full.csproj │ │ │ │ │ ├── Encoder-full_vs2008.csproj │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── Encoder-full_vs2008.sln │ │ │ └── Encoder-simple │ │ │ │ ├── Encoder-simple.sln │ │ │ │ └── Encoder-simple │ │ │ │ ├── Encoder-simple.csproj │ │ │ │ ├── Encoder-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── FrequencyCounter-full.exe │ │ │ ├── FrequencyCounterExamples │ │ │ ├── FrequencyCounter-full │ │ │ │ ├── FrequencyCounter-full.sln │ │ │ │ ├── FrequencyCounter-full │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.designer.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── FrequencyCounter-full.csproj │ │ │ │ │ ├── FrequencyCounter-full_vs2008.csproj │ │ │ │ │ ├── FrequencyCounter.cs │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ ├── TextInputBox.designer.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── FrequencyCounter-full_vs2008.sln │ │ │ └── FrequencyCounter-simple │ │ │ │ ├── FrequencyCounter-simple.sln │ │ │ │ └── FrequencyCounter-simple │ │ │ │ ├── FrequencyCounter-simple.csproj │ │ │ │ ├── FrequencyCounter-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── GPS-full.exe │ │ │ ├── GPSExamples │ │ │ ├── GPS-full │ │ │ │ ├── GPS-full.sln │ │ │ │ ├── GPS-full │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── GMap.NET.Core.dll │ │ │ │ │ ├── GMap.NET.WindowsForms.dll │ │ │ │ │ ├── GPS-full.csproj │ │ │ │ │ ├── GPS-full_vs2008.csproj │ │ │ │ │ ├── GPS.cs │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── System.Data.SQLite.DLL │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── GPS-full_vs2008.sln │ │ │ └── GPS-simple │ │ │ │ ├── GPS-simple.sln │ │ │ │ ├── GPS-simple.suo │ │ │ │ └── GPS-simple │ │ │ │ ├── GPS-simple.csproj │ │ │ │ ├── GPS-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── HelloWorld │ │ │ └── HelloWorld │ │ │ │ ├── HelloWorld.csproj │ │ │ │ ├── HelloWorld.sln │ │ │ │ ├── HelloWorld_vs2008.csproj │ │ │ │ ├── HelloWorld_vs2008.sln │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── IR-full.exe │ │ │ ├── IRExamples │ │ │ ├── IR-full │ │ │ │ ├── IR-full.sln │ │ │ │ ├── IR-full │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── IR-full.csproj │ │ │ │ │ ├── IR-full_vs2008.csproj │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── IR-full_vs2008.sln │ │ │ └── IR-simple │ │ │ │ ├── IR-simple.sln │ │ │ │ └── IR-simple │ │ │ │ ├── IR-simple.csproj │ │ │ │ ├── IR-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── InterfaceKit-full.exe │ │ │ ├── InterfaceKitExamples │ │ │ ├── InterfaceKit-full │ │ │ │ ├── InterfaceKit-full.sln │ │ │ │ ├── InterfaceKit-full │ │ │ │ │ ├── 1018_1.ico │ │ │ │ │ ├── AdvancedSensorForm.Designer.cs │ │ │ │ │ ├── AdvancedSensorForm.cs │ │ │ │ │ ├── AdvancedSensorForm.resx │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── InterfaceKit-full.csproj │ │ │ │ │ ├── InterfaceKit-full_vs2008.csproj │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── SensorExamples │ │ │ │ │ │ ├── BaseSensor.Designer.cs │ │ │ │ │ │ ├── BaseSensor.cs │ │ │ │ │ │ ├── BaseSensor.resx │ │ │ │ │ │ ├── Sensor1101 GP2D12.Designer.cs │ │ │ │ │ │ ├── Sensor1101 GP2D12.cs │ │ │ │ │ │ ├── Sensor1101 GP2D12.resx │ │ │ │ │ │ ├── Sensor1101 GP2D120.cs │ │ │ │ │ │ ├── Sensor1101 GP2D120.designer.cs │ │ │ │ │ │ ├── Sensor1101 GP2D120.resx │ │ │ │ │ │ ├── Sensor1101 GP2Y0A02YK.cs │ │ │ │ │ │ ├── Sensor1101 GP2Y0A02YK.designer.cs │ │ │ │ │ │ ├── Sensor1101 GP2Y0A02YK.resx │ │ │ │ │ │ ├── Sensor1102.Designer.cs │ │ │ │ │ │ ├── Sensor1102.cs │ │ │ │ │ │ ├── Sensor1102.resx │ │ │ │ │ │ ├── Sensor1103.Designer.cs │ │ │ │ │ │ ├── Sensor1103.cs │ │ │ │ │ │ ├── Sensor1103.resx │ │ │ │ │ │ ├── Sensor1104.Designer.cs │ │ │ │ │ │ ├── Sensor1104.cs │ │ │ │ │ │ ├── Sensor1104.resx │ │ │ │ │ │ ├── Sensor1105.Designer.cs │ │ │ │ │ │ ├── Sensor1105.cs │ │ │ │ │ │ ├── Sensor1105.resx │ │ │ │ │ │ ├── Sensor1106.Designer.cs │ │ │ │ │ │ ├── Sensor1106.cs │ │ │ │ │ │ ├── Sensor1106.resx │ │ │ │ │ │ ├── Sensor1107.Designer.cs │ │ │ │ │ │ ├── Sensor1107.cs │ │ │ │ │ │ ├── Sensor1107.resx │ │ │ │ │ │ ├── Sensor1108.Designer.cs │ │ │ │ │ │ ├── Sensor1108.cs │ │ │ │ │ │ ├── Sensor1108.resx │ │ │ │ │ │ ├── Sensor1109.Designer.cs │ │ │ │ │ │ ├── Sensor1109.cs │ │ │ │ │ │ ├── Sensor1109.resx │ │ │ │ │ │ ├── Sensor1110.Designer.cs │ │ │ │ │ │ ├── Sensor1110.cs │ │ │ │ │ │ ├── Sensor1110.resx │ │ │ │ │ │ ├── Sensor1111.Designer.cs │ │ │ │ │ │ ├── Sensor1111.cs │ │ │ │ │ │ ├── Sensor1111.resx │ │ │ │ │ │ ├── Sensor1112.Designer.cs │ │ │ │ │ │ ├── Sensor1112.cs │ │ │ │ │ │ ├── Sensor1112.resx │ │ │ │ │ │ ├── Sensor1113X.Designer.cs │ │ │ │ │ │ ├── Sensor1113X.cs │ │ │ │ │ │ ├── Sensor1113X.resx │ │ │ │ │ │ ├── Sensor1113Y.Designer.cs │ │ │ │ │ │ ├── Sensor1113Y.cs │ │ │ │ │ │ ├── Sensor1113Y.resx │ │ │ │ │ │ ├── Sensor1115.Designer.cs │ │ │ │ │ │ ├── Sensor1115.cs │ │ │ │ │ │ ├── Sensor1115.resx │ │ │ │ │ │ ├── Sensor1116.Designer.cs │ │ │ │ │ │ ├── Sensor1116.cs │ │ │ │ │ │ ├── Sensor1116.resx │ │ │ │ │ │ ├── Sensor1117.Designer.cs │ │ │ │ │ │ ├── Sensor1117.cs │ │ │ │ │ │ ├── Sensor1117.resx │ │ │ │ │ │ ├── Sensor1118AC.Designer.cs │ │ │ │ │ │ ├── Sensor1118AC.cs │ │ │ │ │ │ ├── Sensor1118AC.resx │ │ │ │ │ │ ├── Sensor1118DC.Designer.cs │ │ │ │ │ │ ├── Sensor1118DC.cs │ │ │ │ │ │ ├── Sensor1118DC.resx │ │ │ │ │ │ ├── Sensor1119AC.Designer.cs │ │ │ │ │ │ ├── Sensor1119AC.cs │ │ │ │ │ │ ├── Sensor1119AC.resx │ │ │ │ │ │ ├── Sensor1119DC.Designer.cs │ │ │ │ │ │ ├── Sensor1119DC.cs │ │ │ │ │ │ ├── Sensor1119DC.resx │ │ │ │ │ │ ├── Sensor1120.Designer.cs │ │ │ │ │ │ ├── Sensor1120.cs │ │ │ │ │ │ ├── Sensor1120.resx │ │ │ │ │ │ ├── Sensor1121.Designer.cs │ │ │ │ │ │ ├── Sensor1121.cs │ │ │ │ │ │ ├── Sensor1121.resx │ │ │ │ │ │ ├── Sensor1122AC.Designer.cs │ │ │ │ │ │ ├── Sensor1122AC.cs │ │ │ │ │ │ ├── Sensor1122AC.resx │ │ │ │ │ │ ├── Sensor1122DC.Designer.cs │ │ │ │ │ │ ├── Sensor1122DC.cs │ │ │ │ │ │ ├── Sensor1122DC.resx │ │ │ │ │ │ ├── Sensor1123.Designer.cs │ │ │ │ │ │ ├── Sensor1123.cs │ │ │ │ │ │ ├── Sensor1123.resx │ │ │ │ │ │ ├── Sensor1124.Designer.cs │ │ │ │ │ │ ├── Sensor1124.cs │ │ │ │ │ │ ├── Sensor1124.resx │ │ │ │ │ │ ├── Sensor1125H.Designer.cs │ │ │ │ │ │ ├── Sensor1125H.cs │ │ │ │ │ │ ├── Sensor1125H.resx │ │ │ │ │ │ ├── Sensor1125T.Designer.cs │ │ │ │ │ │ ├── Sensor1125T.cs │ │ │ │ │ │ ├── Sensor1125T.resx │ │ │ │ │ │ ├── Sensor1126.Designer.cs │ │ │ │ │ │ ├── Sensor1126.cs │ │ │ │ │ │ ├── Sensor1126.resx │ │ │ │ │ │ ├── Sensor1127.Designer.cs │ │ │ │ │ │ ├── Sensor1127.cs │ │ │ │ │ │ ├── Sensor1127.resx │ │ │ │ │ │ ├── Sensor1128.Designer.cs │ │ │ │ │ │ ├── Sensor1128.cs │ │ │ │ │ │ ├── Sensor1128.resx │ │ │ │ │ │ ├── Sensor1129.Designer.cs │ │ │ │ │ │ ├── Sensor1129.cs │ │ │ │ │ │ ├── Sensor1129.resx │ │ │ │ │ │ ├── Sensor1130ORP.Designer.cs │ │ │ │ │ │ ├── Sensor1130ORP.cs │ │ │ │ │ │ ├── Sensor1130ORP.resx │ │ │ │ │ │ ├── Sensor1130pH.Designer.cs │ │ │ │ │ │ ├── Sensor1130pH.cs │ │ │ │ │ │ ├── Sensor1130pH.resx │ │ │ │ │ │ ├── Sensor1131.Designer.cs │ │ │ │ │ │ ├── Sensor1131.cs │ │ │ │ │ │ ├── Sensor1131.resx │ │ │ │ │ │ ├── Sensor1132.Designer.cs │ │ │ │ │ │ ├── Sensor1132.cs │ │ │ │ │ │ ├── Sensor1132.resx │ │ │ │ │ │ ├── Sensor1133.Designer.cs │ │ │ │ │ │ ├── Sensor1133.cs │ │ │ │ │ │ ├── Sensor1133.resx │ │ │ │ │ │ ├── Sensor1134.Designer.cs │ │ │ │ │ │ ├── Sensor1134.cs │ │ │ │ │ │ ├── Sensor1134.resx │ │ │ │ │ │ ├── Sensor1135.Designer.cs │ │ │ │ │ │ ├── Sensor1135.cs │ │ │ │ │ │ ├── Sensor1135.resx │ │ │ │ │ │ ├── Sensor3120.Designer.cs │ │ │ │ │ │ ├── Sensor3120.cs │ │ │ │ │ │ ├── Sensor3120.resx │ │ │ │ │ │ ├── Sensor3500.cs │ │ │ │ │ │ ├── Sensor3500.designer.cs │ │ │ │ │ │ ├── Sensor3500.resx │ │ │ │ │ │ ├── SensorBox.Designer.cs │ │ │ │ │ │ ├── SensorBox.cs │ │ │ │ │ │ └── SensorBox.resx │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── InterfaceKit-full_vs2008.sln │ │ │ └── InterfaceKit-simple │ │ │ │ ├── InterfaceKit-simple.sln │ │ │ │ └── InterfaceKit-simple │ │ │ │ ├── InterfaceKit-simple.csproj │ │ │ │ ├── InterfaceKit-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── LED-full.exe │ │ │ ├── LEDExamples │ │ │ ├── LED-full │ │ │ │ ├── LED-full.sln │ │ │ │ ├── LED-full │ │ │ │ │ ├── 1030_0.ico │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── LED-full.csproj │ │ │ │ │ ├── LED-full_vs2008.csproj │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── LED-full_vs2008.sln │ │ │ └── LED-simple │ │ │ │ ├── LED-simple.sln │ │ │ │ └── LED-simple │ │ │ │ ├── LED-simple.csproj │ │ │ │ ├── LED-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Manager-full.exe │ │ │ ├── ManagerExamples │ │ │ ├── Manager-full │ │ │ │ ├── Manager-full.sln │ │ │ │ ├── Manager-full │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Manager-full.csproj │ │ │ │ │ ├── Manager-full_vs2008.csproj │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ └── Manager-full_vs2008.sln │ │ │ └── Manager-simple │ │ │ │ ├── Manager-simple.sln │ │ │ │ └── Manager-simple │ │ │ │ ├── Manager-simple.csproj │ │ │ │ ├── Manager-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── MotorControl-full.exe │ │ │ ├── MotorControlExamples │ │ │ ├── MotorControl-full │ │ │ │ ├── MotorControl-full.sln │ │ │ │ ├── MotorControl-full │ │ │ │ │ ├── 1064_0.ico │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── MotorControl-full.csproj │ │ │ │ │ ├── MotorControl-full_vs2008.csproj │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── MotorControl-full_vs2008.sln │ │ │ └── MotorControl-simple │ │ │ │ ├── MotorControl-simple.sln │ │ │ │ └── MotorControl-simple │ │ │ │ ├── MotorControl-simple.csproj │ │ │ │ ├── MotorControl-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── MultiTemperatureChart │ │ │ ├── MultiTemperatureChart.sln │ │ │ └── MultiTemperatureChart │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── MultiTemperatureChart.csproj │ │ │ │ ├── MultiTemperatureChart_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── ZedGraph.dll │ │ │ │ └── ZedGraph.xml │ │ │ ├── PHSensor-full.exe │ │ │ ├── PHSensorExamples │ │ │ ├── PHSensor-full │ │ │ │ ├── PHSensor-full.sln │ │ │ │ ├── PHSensor-full │ │ │ │ │ ├── 1058_0.ico │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── PHSensor-full.csproj │ │ │ │ │ ├── PHSensor-full_vs2008.csproj │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── PHSensor-full_vs2008.sln │ │ │ └── PHSensor-simple │ │ │ │ ├── PHSensor-simple.sln │ │ │ │ └── PHSensor-simple │ │ │ │ ├── PHSensor-simple.csproj │ │ │ │ ├── PHSensor-simple_vs2008.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── RFID-full.exe │ │ │ ├── RFIDExamples │ │ │ ├── RFID-full │ │ │ │ ├── RFID-full.sln │ │ │ │ ├── RFID-full │ │ │ │ │ ├── 1023_1.ico │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── RFID-full.csproj │ │ │ │ │ ├── RFID-full_vs2008.csproj │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── RFID-full_vs2008.sln │ │ │ └── RFID-simple │ │ │ │ ├── RFID-simple.sln │ │ │ │ └── RFID-simple │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── RFID-simple.csproj │ │ │ │ └── RFID-simple_vs2008.csproj │ │ │ ├── Servo-full.exe │ │ │ ├── ServoExamples │ │ │ ├── Servo-full │ │ │ │ ├── Servo-full.sln │ │ │ │ ├── Servo-full │ │ │ │ │ ├── 1000_0.ico │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── Servo-full.csproj │ │ │ │ │ ├── Servo-full_vs2008.csproj │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── Servo-full_vs2008.sln │ │ │ ├── Servo-multi │ │ │ │ └── Servo-multi │ │ │ │ │ ├── Servo-multi.sln │ │ │ │ │ └── Servo-multi │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── Servo-multi.csproj │ │ │ │ │ └── Servo-multi_vs2008.csproj │ │ │ └── Servo-simple │ │ │ │ ├── Servo-simple.sln │ │ │ │ └── Servo-simple │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Servo-simple.csproj │ │ │ │ └── Servo-simple_vs2008.csproj │ │ │ ├── Spatial-full.exe │ │ │ ├── SpatialExamples │ │ │ ├── Spatial-CompassCalibrator │ │ │ │ ├── CompassCalibrator.sln │ │ │ │ ├── CompassCalibrator │ │ │ │ │ ├── Calibration.cs │ │ │ │ │ ├── CompassCalibrator.csproj │ │ │ │ │ ├── CompassCalibrator_vs2008.csproj │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Math │ │ │ │ │ │ ├── Math3D.cs │ │ │ │ │ │ ├── Matrix3x3.cs │ │ │ │ │ │ ├── Pipeline.cs │ │ │ │ │ │ └── Vector3.cs │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ └── compasscal.dll │ │ │ │ └── CompassCalibrator_vs2008.sln │ │ │ ├── Spatial-full │ │ │ │ ├── Spatial-full.sln │ │ │ │ ├── Spatial-full │ │ │ │ │ ├── 1056_0_Top.png │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── ParameterInputBox.Designer.cs │ │ │ │ │ ├── ParameterInputBox.cs │ │ │ │ │ ├── ParameterInputBox.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── Spatial-full.csproj │ │ │ │ │ ├── Spatial-full_vs2008.csproj │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ ├── TextInputBox.resx │ │ │ │ │ └── app.config │ │ │ │ └── Spatial-full_vs2008.sln │ │ │ ├── Spatial-simple │ │ │ │ ├── Spatial-simple.sln │ │ │ │ └── Spatial-simple │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Spatial-simple.csproj │ │ │ │ │ └── Spatial-simple_vs2008.csproj │ │ │ └── Spatial-wireframe │ │ │ │ ├── Wireframe.sln │ │ │ │ └── Wireframe │ │ │ │ ├── 3D │ │ │ │ ├── Math3D.cs │ │ │ │ ├── Matrix3x3.cs │ │ │ │ ├── ObjLoader.cs │ │ │ │ ├── Pipeline.cs │ │ │ │ └── Vector3.cs │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── Wireframe.csproj │ │ │ │ ├── Wireframe_vs2008.csproj │ │ │ │ ├── shape.obj │ │ │ │ └── teapot.obj │ │ │ ├── Stepper-full.exe │ │ │ ├── StepperExamples │ │ │ ├── Stepper-full │ │ │ │ ├── Stepper-full.sln │ │ │ │ ├── Stepper-full │ │ │ │ │ ├── 1062_0.ico │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── Stepper-full.csproj │ │ │ │ │ ├── Stepper-full_vs2008.csproj │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── Stepper-full_vs2008.sln │ │ │ └── Stepper-simple │ │ │ │ ├── Stepper-simple.sln │ │ │ │ └── Stepper-simple │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Stepper-simple.csproj │ │ │ │ └── Stepper-simple_vs2008.csproj │ │ │ ├── TemperatureChart │ │ │ ├── TemperatureChart.sln │ │ │ └── TemperatureChart │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── TemperatureChart.csproj │ │ │ │ ├── TemperatureChart_vs2008.csproj │ │ │ │ └── ZedGraph.dll │ │ │ ├── TemperatureSensor-full.exe │ │ │ ├── TemperatureSensorExamples │ │ │ ├── TemperatureSensor-full │ │ │ │ ├── TemperatureSensor-full.sln │ │ │ │ ├── TemperatureSensor-full │ │ │ │ │ ├── 1051_1.ico │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TemperatureSensor-full.csproj │ │ │ │ │ ├── TemperatureSensor-full_vs2008.csproj │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ └── TextInputBox.resx │ │ │ │ └── TemperatureSensor-full_vs2008.sln │ │ │ └── TemperatureSensor-simple │ │ │ │ ├── TemperatureSensor-simple.sln │ │ │ │ └── TemperatureSensor-simple │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── TEMPER~2.CSP │ │ │ │ └── TemperatureSensor-simple.csproj │ │ │ ├── TextLCD-full.exe │ │ │ ├── TextLCDExamples │ │ │ ├── TextLCD-IFKit │ │ │ │ ├── TextLCD-IFKit.sln │ │ │ │ └── TextLCD-IFKit │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextLCD-IFKit.csproj │ │ │ │ │ └── TextLCD-IFKit_vs2008.csproj │ │ │ ├── TextLCD-full │ │ │ │ ├── TextLCD-full.sln │ │ │ │ ├── TextLCD-full │ │ │ │ │ ├── 1202_2.ico │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ ├── TextInputBox.resx │ │ │ │ │ ├── TextLCD-full.csproj │ │ │ │ │ ├── TextLCD-full_vs2008.csproj │ │ │ │ │ └── TrackBar.dll │ │ │ │ └── TextLCD-full_vs2008.sln │ │ │ ├── TextLCD-full_old │ │ │ │ ├── TextLCD-full.sln │ │ │ │ └── TextLCD-full │ │ │ │ │ ├── 1202_2.ico │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ ├── TextInputBox.resx │ │ │ │ │ ├── TextLCD-full.csproj │ │ │ │ │ └── TextLCD-full_vs2008.csproj │ │ │ └── TextLCD-simple │ │ │ │ ├── TextLCD-simple.sln │ │ │ │ └── TextLCD-simple │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── TextLCD-simple.csproj │ │ │ │ └── TextLCD-simple_vs2008.csproj │ │ │ └── WPF_VS2010 │ │ │ └── WPF_IntefaceKit-simple │ │ │ ├── WPF_IntefaceKit-simple.sln │ │ │ └── WPF_IntefaceKit-simple │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── WPF_IntefaceKit-simple.csproj │ │ │ └── WPF_IntefaceKit-simple.csproj.user │ ├── 1124 - Mechanical Drawings.pdf │ ├── 1124 - Temperature Sensor - Manual.pdf │ ├── 3560 - Magnetic Switch - Datasheet.pdf │ ├── Linux Drivers │ │ ├── Requires Linux Kernal 2_6+.txt │ │ ├── phidget 21 source.tar.gz │ │ └── phidget webservice.tar.gz │ ├── Programming │ │ ├── Addressing_EMI_Issues_Tutorial.pdf │ │ ├── C │ │ │ ├── Borland C++ Lib File │ │ │ │ └── phidget21bcc.lib │ │ │ ├── C Examples │ │ │ │ ├── Accelerometer-simple.c │ │ │ │ ├── AdvancedServo-simple.c │ │ │ │ ├── Analog-simple.c │ │ │ │ ├── Bridge-simple.c │ │ │ │ ├── Dictionary-simple.c │ │ │ │ ├── Encoder-simple.c │ │ │ │ ├── FrequencyCounter-simple.c │ │ │ │ ├── GPS-simple.c │ │ │ │ ├── IR-simple.c │ │ │ │ ├── InterfaceKit-simple.c │ │ │ │ ├── LED-simple.c │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Manager-simple.c │ │ │ │ ├── MotorControl-simple.c │ │ │ │ ├── PHSensor-simple.c │ │ │ │ ├── README │ │ │ │ ├── RFID-simple.c │ │ │ │ ├── Servo-simple.c │ │ │ │ ├── Spatial-simple.c │ │ │ │ ├── Stepper-simple.c │ │ │ │ ├── TemperatureSensor-simple.c │ │ │ │ ├── TextLCD-simple.c │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── depcomp │ │ │ │ ├── install-sh │ │ │ │ └── missing │ │ │ ├── CSharp Examples │ │ │ │ ├── Accelerometer-full.exe │ │ │ │ ├── AccelerometerExamples │ │ │ │ │ ├── Accelerometer-full │ │ │ │ │ │ ├── Accelerometer-full.sln │ │ │ │ │ │ ├── Accelerometer-full │ │ │ │ │ │ │ ├── 1059_0.ico │ │ │ │ │ │ │ ├── Accelerometer-full.csproj │ │ │ │ │ │ │ ├── Accelerometer-full_vs2008.csproj │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── Accelerometer-full_vs2008.sln │ │ │ │ │ ├── Accelerometer-graphical │ │ │ │ │ │ ├── Accelerometer-graphical.sln │ │ │ │ │ │ └── Accelerometer-graphical │ │ │ │ │ │ │ ├── Accelerometer-graphical.csproj │ │ │ │ │ │ │ ├── Accelerometer-graphical_vs2008.csproj │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ └── Accelerometer-simple │ │ │ │ │ │ ├── Accelerometer-simple.sln │ │ │ │ │ │ └── Accelerometer-simple │ │ │ │ │ │ ├── Accelerometer-simple.csproj │ │ │ │ │ │ ├── Accelerometer-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── AdvancedServo-full.exe │ │ │ │ ├── AdvancedServoExamples │ │ │ │ │ ├── AdvancedServo-full │ │ │ │ │ │ ├── AdvancedServo-full.sln │ │ │ │ │ │ ├── AdvancedServo-full │ │ │ │ │ │ │ ├── 1061_0.ico │ │ │ │ │ │ │ ├── AdvancedServo-full.csproj │ │ │ │ │ │ │ ├── AdvancedServo-full_vs2008.csproj │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── AdvancedServo-full_vs2008.sln │ │ │ │ │ └── AdvancedServo-simple │ │ │ │ │ │ ├── AdvancedServo-simple.sln │ │ │ │ │ │ └── AdvancedServo-simple │ │ │ │ │ │ ├── AdvancedServo-simple.csproj │ │ │ │ │ │ ├── AdvancedServo-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── AllExamples │ │ │ │ │ ├── AllExamples.sln │ │ │ │ │ └── AllExamples_vs2008.sln │ │ │ │ ├── Analog-full.exe │ │ │ │ ├── AnalogExamples │ │ │ │ │ ├── Analog-full │ │ │ │ │ │ ├── Analog-full.sln │ │ │ │ │ │ ├── Analog-full │ │ │ │ │ │ │ ├── Analog-full.csproj │ │ │ │ │ │ │ ├── Analog-full_vs2008.csproj │ │ │ │ │ │ │ ├── Analog.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ ├── TextInputBox.designer.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── Analog-full_vs2008.sln │ │ │ │ │ └── Analog-simple │ │ │ │ │ │ ├── Analog-simple.sln │ │ │ │ │ │ └── Analog-simple │ │ │ │ │ │ ├── Analog-simple.csproj │ │ │ │ │ │ ├── Analog-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Bridge-full.exe │ │ │ │ ├── BridgeExamples │ │ │ │ │ ├── Bridge-full │ │ │ │ │ │ ├── Bridge-full.sln │ │ │ │ │ │ ├── Bridge-full │ │ │ │ │ │ │ ├── Bridge-full.csproj │ │ │ │ │ │ │ ├── Bridge-full.sln │ │ │ │ │ │ │ ├── Bridge-full.suo │ │ │ │ │ │ │ ├── Bridge-full_vs2008.csproj │ │ │ │ │ │ │ ├── Bridge.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ ├── TextInputBox.designer.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── Bridge-full_vs2008.sln │ │ │ │ │ └── Bridge-simple │ │ │ │ │ │ ├── Bridge-simple.sln │ │ │ │ │ │ └── Bridge-simple │ │ │ │ │ │ ├── Bridge-simple.csproj │ │ │ │ │ │ ├── Bridge-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Encoder-full.exe │ │ │ │ ├── EncoderExamples │ │ │ │ │ ├── Encoder-full │ │ │ │ │ │ ├── Encoder-full.sln │ │ │ │ │ │ ├── Encoder-full │ │ │ │ │ │ │ ├── 1052_0.ico │ │ │ │ │ │ │ ├── Encoder-full.csproj │ │ │ │ │ │ │ ├── Encoder-full_vs2008.csproj │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── Encoder-full_vs2008.sln │ │ │ │ │ └── Encoder-simple │ │ │ │ │ │ ├── Encoder-simple.sln │ │ │ │ │ │ └── Encoder-simple │ │ │ │ │ │ ├── Encoder-simple.csproj │ │ │ │ │ │ ├── Encoder-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── FrequencyCounter-full.exe │ │ │ │ ├── FrequencyCounterExamples │ │ │ │ │ ├── FrequencyCounter-full │ │ │ │ │ │ ├── FrequencyCounter-full.sln │ │ │ │ │ │ ├── FrequencyCounter-full │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── FrequencyCounter-full.csproj │ │ │ │ │ │ │ ├── FrequencyCounter-full_vs2008.csproj │ │ │ │ │ │ │ ├── FrequencyCounter.cs │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ ├── TextInputBox.designer.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── FrequencyCounter-full_vs2008.sln │ │ │ │ │ └── FrequencyCounter-simple │ │ │ │ │ │ ├── FrequencyCounter-simple.sln │ │ │ │ │ │ └── FrequencyCounter-simple │ │ │ │ │ │ ├── FrequencyCounter-simple.csproj │ │ │ │ │ │ ├── FrequencyCounter-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── GPS-full.exe │ │ │ │ ├── GPSExamples │ │ │ │ │ ├── GPS-full │ │ │ │ │ │ ├── GPS-full.sln │ │ │ │ │ │ ├── GPS-full │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── GMap.NET.Core.dll │ │ │ │ │ │ │ ├── GMap.NET.WindowsForms.dll │ │ │ │ │ │ │ ├── GPS-full.csproj │ │ │ │ │ │ │ ├── GPS-full_vs2008.csproj │ │ │ │ │ │ │ ├── GPS.cs │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── System.Data.SQLite.DLL │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── GPS-full_vs2008.sln │ │ │ │ │ └── GPS-simple │ │ │ │ │ │ ├── GPS-simple.sln │ │ │ │ │ │ ├── GPS-simple.suo │ │ │ │ │ │ └── GPS-simple │ │ │ │ │ │ ├── GPS-simple.csproj │ │ │ │ │ │ ├── GPS-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── HelloWorld │ │ │ │ │ └── HelloWorld │ │ │ │ │ │ ├── HelloWorld.csproj │ │ │ │ │ │ ├── HelloWorld.sln │ │ │ │ │ │ ├── HelloWorld_vs2008.csproj │ │ │ │ │ │ ├── HelloWorld_vs2008.sln │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── IR-full.exe │ │ │ │ ├── IRExamples │ │ │ │ │ ├── IR-full │ │ │ │ │ │ ├── IR-full.sln │ │ │ │ │ │ ├── IR-full │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── IR-full.csproj │ │ │ │ │ │ │ ├── IR-full_vs2008.csproj │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── IR-full_vs2008.sln │ │ │ │ │ └── IR-simple │ │ │ │ │ │ ├── IR-simple.sln │ │ │ │ │ │ └── IR-simple │ │ │ │ │ │ ├── IR-simple.csproj │ │ │ │ │ │ ├── IR-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── InterfaceKit-full.exe │ │ │ │ ├── InterfaceKitExamples │ │ │ │ │ ├── InterfaceKit-full │ │ │ │ │ │ ├── Backup │ │ │ │ │ │ │ ├── InterfaceKit-full.sln │ │ │ │ │ │ │ └── InterfaceKit-full │ │ │ │ │ │ │ │ ├── 1018_1.ico │ │ │ │ │ │ │ │ ├── AdvancedSensorForm.Designer.cs │ │ │ │ │ │ │ │ ├── AdvancedSensorForm.cs │ │ │ │ │ │ │ │ ├── AdvancedSensorForm.resx │ │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ │ ├── InterfaceKit-full.csproj │ │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ │ ├── SensorExamples │ │ │ │ │ │ │ │ ├── BaseSensor.Designer.cs │ │ │ │ │ │ │ │ ├── BaseSensor.cs │ │ │ │ │ │ │ │ ├── BaseSensor.resx │ │ │ │ │ │ │ │ ├── Sensor1101 GP2D12.cs │ │ │ │ │ │ │ │ ├── Sensor1101 GP2D12.designer.cs │ │ │ │ │ │ │ │ ├── Sensor1101 GP2D12.resx │ │ │ │ │ │ │ │ ├── Sensor1101 GP2D120.cs │ │ │ │ │ │ │ │ ├── Sensor1101 GP2D120.designer.cs │ │ │ │ │ │ │ │ ├── Sensor1101 GP2D120.resx │ │ │ │ │ │ │ │ ├── Sensor1101 GP2Y0A02YK.cs │ │ │ │ │ │ │ │ ├── Sensor1101 GP2Y0A02YK.designer.cs │ │ │ │ │ │ │ │ ├── Sensor1101 GP2Y0A02YK.resx │ │ │ │ │ │ │ │ ├── Sensor1102.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1102.cs │ │ │ │ │ │ │ │ ├── Sensor1102.resx │ │ │ │ │ │ │ │ ├── Sensor1103.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1103.cs │ │ │ │ │ │ │ │ ├── Sensor1103.resx │ │ │ │ │ │ │ │ ├── Sensor1104.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1104.cs │ │ │ │ │ │ │ │ ├── Sensor1104.resx │ │ │ │ │ │ │ │ ├── Sensor1105.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1105.cs │ │ │ │ │ │ │ │ ├── Sensor1105.resx │ │ │ │ │ │ │ │ ├── Sensor1106.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1106.cs │ │ │ │ │ │ │ │ ├── Sensor1106.resx │ │ │ │ │ │ │ │ ├── Sensor1107.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1107.cs │ │ │ │ │ │ │ │ ├── Sensor1107.resx │ │ │ │ │ │ │ │ ├── Sensor1108.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1108.cs │ │ │ │ │ │ │ │ ├── Sensor1108.resx │ │ │ │ │ │ │ │ ├── Sensor1109.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1109.cs │ │ │ │ │ │ │ │ ├── Sensor1109.resx │ │ │ │ │ │ │ │ ├── Sensor1110.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1110.cs │ │ │ │ │ │ │ │ ├── Sensor1110.resx │ │ │ │ │ │ │ │ ├── Sensor1111.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1111.cs │ │ │ │ │ │ │ │ ├── Sensor1111.resx │ │ │ │ │ │ │ │ ├── Sensor1112.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1112.cs │ │ │ │ │ │ │ │ ├── Sensor1112.resx │ │ │ │ │ │ │ │ ├── Sensor1113X.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1113X.cs │ │ │ │ │ │ │ │ ├── Sensor1113X.resx │ │ │ │ │ │ │ │ ├── Sensor1113Y.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1113Y.cs │ │ │ │ │ │ │ │ ├── Sensor1113Y.resx │ │ │ │ │ │ │ │ ├── Sensor1115.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1115.cs │ │ │ │ │ │ │ │ ├── Sensor1115.resx │ │ │ │ │ │ │ │ ├── Sensor1116.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1116.cs │ │ │ │ │ │ │ │ ├── Sensor1116.resx │ │ │ │ │ │ │ │ ├── Sensor1117.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1117.cs │ │ │ │ │ │ │ │ ├── Sensor1117.resx │ │ │ │ │ │ │ │ ├── Sensor1118AC.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1118AC.cs │ │ │ │ │ │ │ │ ├── Sensor1118AC.resx │ │ │ │ │ │ │ │ ├── Sensor1118DC.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1118DC.cs │ │ │ │ │ │ │ │ ├── Sensor1118DC.resx │ │ │ │ │ │ │ │ ├── Sensor1119AC.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1119AC.cs │ │ │ │ │ │ │ │ ├── Sensor1119AC.resx │ │ │ │ │ │ │ │ ├── Sensor1119DC.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1119DC.cs │ │ │ │ │ │ │ │ ├── Sensor1119DC.resx │ │ │ │ │ │ │ │ ├── Sensor1120.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1120.cs │ │ │ │ │ │ │ │ ├── Sensor1120.resx │ │ │ │ │ │ │ │ ├── Sensor1121.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1121.cs │ │ │ │ │ │ │ │ ├── Sensor1121.resx │ │ │ │ │ │ │ │ ├── Sensor1122AC.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1122AC.cs │ │ │ │ │ │ │ │ ├── Sensor1122AC.resx │ │ │ │ │ │ │ │ ├── Sensor1122DC.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1122DC.cs │ │ │ │ │ │ │ │ ├── Sensor1122DC.resx │ │ │ │ │ │ │ │ ├── Sensor1123.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1123.cs │ │ │ │ │ │ │ │ ├── Sensor1123.resx │ │ │ │ │ │ │ │ ├── Sensor1124.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1124.cs │ │ │ │ │ │ │ │ ├── Sensor1124.resx │ │ │ │ │ │ │ │ ├── Sensor1125H.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1125H.cs │ │ │ │ │ │ │ │ ├── Sensor1125H.resx │ │ │ │ │ │ │ │ ├── Sensor1125T.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1125T.cs │ │ │ │ │ │ │ │ ├── Sensor1125T.resx │ │ │ │ │ │ │ │ ├── Sensor1126.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1126.cs │ │ │ │ │ │ │ │ ├── Sensor1126.resx │ │ │ │ │ │ │ │ ├── Sensor1127.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1127.cs │ │ │ │ │ │ │ │ ├── Sensor1127.resx │ │ │ │ │ │ │ │ ├── Sensor1128.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1128.cs │ │ │ │ │ │ │ │ ├── Sensor1128.resx │ │ │ │ │ │ │ │ ├── Sensor1129.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1129.cs │ │ │ │ │ │ │ │ ├── Sensor1129.resx │ │ │ │ │ │ │ │ ├── Sensor1130ORP.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1130ORP.cs │ │ │ │ │ │ │ │ ├── Sensor1130ORP.resx │ │ │ │ │ │ │ │ ├── Sensor1130pH.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1130pH.cs │ │ │ │ │ │ │ │ ├── Sensor1130pH.resx │ │ │ │ │ │ │ │ ├── Sensor1131.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1131.cs │ │ │ │ │ │ │ │ ├── Sensor1131.resx │ │ │ │ │ │ │ │ ├── Sensor1132.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1132.cs │ │ │ │ │ │ │ │ ├── Sensor1132.resx │ │ │ │ │ │ │ │ ├── Sensor1133.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1133.cs │ │ │ │ │ │ │ │ ├── Sensor1133.resx │ │ │ │ │ │ │ │ ├── Sensor1134.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1134.cs │ │ │ │ │ │ │ │ ├── Sensor1134.resx │ │ │ │ │ │ │ │ ├── Sensor1135.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1135.cs │ │ │ │ │ │ │ │ ├── Sensor1135.resx │ │ │ │ │ │ │ │ ├── Sensor3120.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor3120.cs │ │ │ │ │ │ │ │ ├── Sensor3120.resx │ │ │ │ │ │ │ │ ├── Sensor3500.cs │ │ │ │ │ │ │ │ ├── Sensor3500.designer.cs │ │ │ │ │ │ │ │ ├── Sensor3500.resx │ │ │ │ │ │ │ │ ├── SensorBox.Designer.cs │ │ │ │ │ │ │ │ ├── SensorBox.cs │ │ │ │ │ │ │ │ └── SensorBox.resx │ │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ ├── InterfaceKit-full.sln │ │ │ │ │ │ ├── InterfaceKit-full.suo │ │ │ │ │ │ ├── InterfaceKit-full │ │ │ │ │ │ │ ├── 1018_1.ico │ │ │ │ │ │ │ ├── AdvancedSensorForm.Designer.cs │ │ │ │ │ │ │ ├── AdvancedSensorForm.cs │ │ │ │ │ │ │ ├── AdvancedSensorForm.resx │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── InterfaceKit-full.csproj │ │ │ │ │ │ │ ├── InterfaceKit-full_vs2008.csproj │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── SensorExamples │ │ │ │ │ │ │ │ ├── BaseSensor.Designer.cs │ │ │ │ │ │ │ │ ├── BaseSensor.cs │ │ │ │ │ │ │ │ ├── BaseSensor.resx │ │ │ │ │ │ │ │ ├── Sensor1101 GP2D12.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1101 GP2D12.cs │ │ │ │ │ │ │ │ ├── Sensor1101 GP2D12.resx │ │ │ │ │ │ │ │ ├── Sensor1101 GP2D120.cs │ │ │ │ │ │ │ │ ├── Sensor1101 GP2D120.designer.cs │ │ │ │ │ │ │ │ ├── Sensor1101 GP2D120.resx │ │ │ │ │ │ │ │ ├── Sensor1101 GP2Y0A02YK.cs │ │ │ │ │ │ │ │ ├── Sensor1101 GP2Y0A02YK.designer.cs │ │ │ │ │ │ │ │ ├── Sensor1101 GP2Y0A02YK.resx │ │ │ │ │ │ │ │ ├── Sensor1102.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1102.cs │ │ │ │ │ │ │ │ ├── Sensor1102.resx │ │ │ │ │ │ │ │ ├── Sensor1103.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1103.cs │ │ │ │ │ │ │ │ ├── Sensor1103.resx │ │ │ │ │ │ │ │ ├── Sensor1104.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1104.cs │ │ │ │ │ │ │ │ ├── Sensor1104.resx │ │ │ │ │ │ │ │ ├── Sensor1105.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1105.cs │ │ │ │ │ │ │ │ ├── Sensor1105.resx │ │ │ │ │ │ │ │ ├── Sensor1106.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1106.cs │ │ │ │ │ │ │ │ ├── Sensor1106.resx │ │ │ │ │ │ │ │ ├── Sensor1107.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1107.cs │ │ │ │ │ │ │ │ ├── Sensor1107.resx │ │ │ │ │ │ │ │ ├── Sensor1108.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1108.cs │ │ │ │ │ │ │ │ ├── Sensor1108.resx │ │ │ │ │ │ │ │ ├── Sensor1109.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1109.cs │ │ │ │ │ │ │ │ ├── Sensor1109.resx │ │ │ │ │ │ │ │ ├── Sensor1110.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1110.cs │ │ │ │ │ │ │ │ ├── Sensor1110.resx │ │ │ │ │ │ │ │ ├── Sensor1111.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1111.cs │ │ │ │ │ │ │ │ ├── Sensor1111.resx │ │ │ │ │ │ │ │ ├── Sensor1112.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1112.cs │ │ │ │ │ │ │ │ ├── Sensor1112.resx │ │ │ │ │ │ │ │ ├── Sensor1113X.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1113X.cs │ │ │ │ │ │ │ │ ├── Sensor1113X.resx │ │ │ │ │ │ │ │ ├── Sensor1113Y.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1113Y.cs │ │ │ │ │ │ │ │ ├── Sensor1113Y.resx │ │ │ │ │ │ │ │ ├── Sensor1115.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1115.cs │ │ │ │ │ │ │ │ ├── Sensor1115.resx │ │ │ │ │ │ │ │ ├── Sensor1116.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1116.cs │ │ │ │ │ │ │ │ ├── Sensor1116.resx │ │ │ │ │ │ │ │ ├── Sensor1117.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1117.cs │ │ │ │ │ │ │ │ ├── Sensor1117.resx │ │ │ │ │ │ │ │ ├── Sensor1118AC.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1118AC.cs │ │ │ │ │ │ │ │ ├── Sensor1118AC.resx │ │ │ │ │ │ │ │ ├── Sensor1118DC.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1118DC.cs │ │ │ │ │ │ │ │ ├── Sensor1118DC.resx │ │ │ │ │ │ │ │ ├── Sensor1119AC.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1119AC.cs │ │ │ │ │ │ │ │ ├── Sensor1119AC.resx │ │ │ │ │ │ │ │ ├── Sensor1119DC.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1119DC.cs │ │ │ │ │ │ │ │ ├── Sensor1119DC.resx │ │ │ │ │ │ │ │ ├── Sensor1120.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1120.cs │ │ │ │ │ │ │ │ ├── Sensor1120.resx │ │ │ │ │ │ │ │ ├── Sensor1121.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1121.cs │ │ │ │ │ │ │ │ ├── Sensor1121.resx │ │ │ │ │ │ │ │ ├── Sensor1122AC.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1122AC.cs │ │ │ │ │ │ │ │ ├── Sensor1122AC.resx │ │ │ │ │ │ │ │ ├── Sensor1122DC.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1122DC.cs │ │ │ │ │ │ │ │ ├── Sensor1122DC.resx │ │ │ │ │ │ │ │ ├── Sensor1123.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1123.cs │ │ │ │ │ │ │ │ ├── Sensor1123.resx │ │ │ │ │ │ │ │ ├── Sensor1124.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1124.cs │ │ │ │ │ │ │ │ ├── Sensor1124.resx │ │ │ │ │ │ │ │ ├── Sensor1125H.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1125H.cs │ │ │ │ │ │ │ │ ├── Sensor1125H.resx │ │ │ │ │ │ │ │ ├── Sensor1125T.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1125T.cs │ │ │ │ │ │ │ │ ├── Sensor1125T.resx │ │ │ │ │ │ │ │ ├── Sensor1126.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1126.cs │ │ │ │ │ │ │ │ ├── Sensor1126.resx │ │ │ │ │ │ │ │ ├── Sensor1127.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1127.cs │ │ │ │ │ │ │ │ ├── Sensor1127.resx │ │ │ │ │ │ │ │ ├── Sensor1128.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1128.cs │ │ │ │ │ │ │ │ ├── Sensor1128.resx │ │ │ │ │ │ │ │ ├── Sensor1129.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1129.cs │ │ │ │ │ │ │ │ ├── Sensor1129.resx │ │ │ │ │ │ │ │ ├── Sensor1130ORP.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1130ORP.cs │ │ │ │ │ │ │ │ ├── Sensor1130ORP.resx │ │ │ │ │ │ │ │ ├── Sensor1130pH.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1130pH.cs │ │ │ │ │ │ │ │ ├── Sensor1130pH.resx │ │ │ │ │ │ │ │ ├── Sensor1131.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1131.cs │ │ │ │ │ │ │ │ ├── Sensor1131.resx │ │ │ │ │ │ │ │ ├── Sensor1132.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1132.cs │ │ │ │ │ │ │ │ ├── Sensor1132.resx │ │ │ │ │ │ │ │ ├── Sensor1133.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1133.cs │ │ │ │ │ │ │ │ ├── Sensor1133.resx │ │ │ │ │ │ │ │ ├── Sensor1134.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1134.cs │ │ │ │ │ │ │ │ ├── Sensor1134.resx │ │ │ │ │ │ │ │ ├── Sensor1135.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor1135.cs │ │ │ │ │ │ │ │ ├── Sensor1135.resx │ │ │ │ │ │ │ │ ├── Sensor3120.Designer.cs │ │ │ │ │ │ │ │ ├── Sensor3120.cs │ │ │ │ │ │ │ │ ├── Sensor3120.resx │ │ │ │ │ │ │ │ ├── Sensor3500.cs │ │ │ │ │ │ │ │ ├── Sensor3500.designer.cs │ │ │ │ │ │ │ │ ├── Sensor3500.resx │ │ │ │ │ │ │ │ ├── SensorBox.Designer.cs │ │ │ │ │ │ │ │ ├── SensorBox.cs │ │ │ │ │ │ │ │ └── SensorBox.resx │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ ├── TextInputBox.resx │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ └── Debug │ │ │ │ │ │ │ │ │ ├── InterfaceKit-full.exe │ │ │ │ │ │ │ │ │ ├── InterfaceKit-full.pdb │ │ │ │ │ │ │ │ │ ├── InterfaceKit-full.vshost.exe │ │ │ │ │ │ │ │ │ └── InterfaceKit-full.vshost.exe.manifest │ │ │ │ │ │ │ └── obj │ │ │ │ │ │ │ │ └── Debug │ │ │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ │ │ ├── GenerateResource.read.1.tlog │ │ │ │ │ │ │ │ ├── GenerateResource.write.1.tlog │ │ │ │ │ │ │ │ ├── InterfaceKit-full.csproj.FileListAbsolute.txt │ │ │ │ │ │ │ │ ├── InterfaceKit-full.exe │ │ │ │ │ │ │ │ ├── InterfaceKit-full.pdb │ │ │ │ │ │ │ │ ├── InterfaceKit_full.AdvancedSensorForm.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.ErrorEventBox.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.Form1.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.Properties.Resources.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.BaseSensor.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1101_GP2D12.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1101_GP2D120.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1101_GP2Y0A02YK.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1102.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1103.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1104.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1105.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1106.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1107.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1108.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1109.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1110.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1111.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1112.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1113X.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1113Y.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1115.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1116.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1117.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1118AC.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1118DC.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1119AC.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1119DC.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1120.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1121.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1122AC.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1122DC.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1123.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1124.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1125H.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1125T.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1126.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1127.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1128.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1129.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1130ORP.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1130pH.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1131.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1132.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1133.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1134.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor1135.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor3120.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.Sensor3500.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.SensorExamples.SensorBox.resources │ │ │ │ │ │ │ │ ├── InterfaceKit_full.TextInputBox.resources │ │ │ │ │ │ │ │ ├── ResolveAssemblyReference.cache │ │ │ │ │ │ │ │ └── TempPE │ │ │ │ │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ │ │ │ ├── InterfaceKit-full_vs2008.sln │ │ │ │ │ │ ├── UpgradeLog.XML │ │ │ │ │ │ └── _UpgradeReport_Files │ │ │ │ │ │ │ ├── UpgradeReport.css │ │ │ │ │ │ │ ├── UpgradeReport.xslt │ │ │ │ │ │ │ ├── UpgradeReport_Minus.gif │ │ │ │ │ │ │ └── UpgradeReport_Plus.gif │ │ │ │ │ └── InterfaceKit-simple │ │ │ │ │ │ ├── InterfaceKit-simple.sln │ │ │ │ │ │ └── InterfaceKit-simple │ │ │ │ │ │ ├── InterfaceKit-simple.csproj │ │ │ │ │ │ ├── InterfaceKit-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── LED-full.exe │ │ │ │ ├── LEDExamples │ │ │ │ │ ├── LED-full │ │ │ │ │ │ ├── LED-full.sln │ │ │ │ │ │ ├── LED-full │ │ │ │ │ │ │ ├── 1030_0.ico │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── LED-full.csproj │ │ │ │ │ │ │ ├── LED-full_vs2008.csproj │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── LED-full_vs2008.sln │ │ │ │ │ └── LED-simple │ │ │ │ │ │ ├── LED-simple.sln │ │ │ │ │ │ └── LED-simple │ │ │ │ │ │ ├── LED-simple.csproj │ │ │ │ │ │ ├── LED-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Manager-full.exe │ │ │ │ ├── ManagerExamples │ │ │ │ │ ├── Manager-full │ │ │ │ │ │ ├── Manager-full.sln │ │ │ │ │ │ ├── Manager-full │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Manager-full.csproj │ │ │ │ │ │ │ ├── Manager-full_vs2008.csproj │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ └── Manager-full_vs2008.sln │ │ │ │ │ └── Manager-simple │ │ │ │ │ │ ├── Manager-simple.sln │ │ │ │ │ │ └── Manager-simple │ │ │ │ │ │ ├── Manager-simple.csproj │ │ │ │ │ │ ├── Manager-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── MotorControl-full.exe │ │ │ │ ├── MotorControlExamples │ │ │ │ │ ├── MotorControl-full │ │ │ │ │ │ ├── MotorControl-full.sln │ │ │ │ │ │ ├── MotorControl-full │ │ │ │ │ │ │ ├── 1064_0.ico │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── MotorControl-full.csproj │ │ │ │ │ │ │ ├── MotorControl-full_vs2008.csproj │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── MotorControl-full_vs2008.sln │ │ │ │ │ └── MotorControl-simple │ │ │ │ │ │ ├── MotorControl-simple.sln │ │ │ │ │ │ └── MotorControl-simple │ │ │ │ │ │ ├── MotorControl-simple.csproj │ │ │ │ │ │ ├── MotorControl-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── MultiTemperatureChart │ │ │ │ │ ├── MultiTemperatureChart.sln │ │ │ │ │ └── MultiTemperatureChart │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ ├── MultiTemperatureChart.csproj │ │ │ │ │ │ ├── MultiTemperatureChart_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ ├── ZedGraph.dll │ │ │ │ │ │ └── ZedGraph.xml │ │ │ │ ├── PHSensor-full.exe │ │ │ │ ├── PHSensorExamples │ │ │ │ │ ├── PHSensor-full │ │ │ │ │ │ ├── PHSensor-full.sln │ │ │ │ │ │ ├── PHSensor-full │ │ │ │ │ │ │ ├── 1058_0.ico │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── PHSensor-full.csproj │ │ │ │ │ │ │ ├── PHSensor-full_vs2008.csproj │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── PHSensor-full_vs2008.sln │ │ │ │ │ └── PHSensor-simple │ │ │ │ │ │ ├── PHSensor-simple.sln │ │ │ │ │ │ └── PHSensor-simple │ │ │ │ │ │ ├── PHSensor-simple.csproj │ │ │ │ │ │ ├── PHSensor-simple_vs2008.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── RFID-full.exe │ │ │ │ ├── RFIDExamples │ │ │ │ │ ├── RFID-full │ │ │ │ │ │ ├── RFID-full.sln │ │ │ │ │ │ ├── RFID-full │ │ │ │ │ │ │ ├── 1023_1.ico │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── RFID-full.csproj │ │ │ │ │ │ │ ├── RFID-full_vs2008.csproj │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── RFID-full_vs2008.sln │ │ │ │ │ └── RFID-simple │ │ │ │ │ │ ├── RFID-simple.sln │ │ │ │ │ │ └── RFID-simple │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ ├── RFID-simple.csproj │ │ │ │ │ │ └── RFID-simple_vs2008.csproj │ │ │ │ ├── Servo-full.exe │ │ │ │ ├── ServoExamples │ │ │ │ │ ├── Servo-full │ │ │ │ │ │ ├── Servo-full.sln │ │ │ │ │ │ ├── Servo-full │ │ │ │ │ │ │ ├── 1000_0.ico │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── Servo-full.csproj │ │ │ │ │ │ │ ├── Servo-full_vs2008.csproj │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── Servo-full_vs2008.sln │ │ │ │ │ ├── Servo-multi │ │ │ │ │ │ └── Servo-multi │ │ │ │ │ │ │ ├── Servo-multi.sln │ │ │ │ │ │ │ └── Servo-multi │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── Servo-multi.csproj │ │ │ │ │ │ │ └── Servo-multi_vs2008.csproj │ │ │ │ │ └── Servo-simple │ │ │ │ │ │ ├── Servo-simple.sln │ │ │ │ │ │ └── Servo-simple │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ ├── Servo-simple.csproj │ │ │ │ │ │ └── Servo-simple_vs2008.csproj │ │ │ │ ├── Spatial-full.exe │ │ │ │ ├── SpatialExamples │ │ │ │ │ ├── Spatial-CompassCalibrator │ │ │ │ │ │ ├── CompassCalibrator.sln │ │ │ │ │ │ ├── CompassCalibrator │ │ │ │ │ │ │ ├── Calibration.cs │ │ │ │ │ │ │ ├── CompassCalibrator.csproj │ │ │ │ │ │ │ ├── CompassCalibrator_vs2008.csproj │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Math │ │ │ │ │ │ │ │ ├── Math3D.cs │ │ │ │ │ │ │ │ ├── Matrix3x3.cs │ │ │ │ │ │ │ │ ├── Pipeline.cs │ │ │ │ │ │ │ │ └── Vector3.cs │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ └── compasscal.dll │ │ │ │ │ │ └── CompassCalibrator_vs2008.sln │ │ │ │ │ ├── Spatial-full │ │ │ │ │ │ ├── Spatial-full.sln │ │ │ │ │ │ ├── Spatial-full │ │ │ │ │ │ │ ├── 1056_0_Top.png │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── ParameterInputBox.Designer.cs │ │ │ │ │ │ │ ├── ParameterInputBox.cs │ │ │ │ │ │ │ ├── ParameterInputBox.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── Spatial-full.csproj │ │ │ │ │ │ │ ├── Spatial-full_vs2008.csproj │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ ├── TextInputBox.resx │ │ │ │ │ │ │ └── app.config │ │ │ │ │ │ └── Spatial-full_vs2008.sln │ │ │ │ │ ├── Spatial-simple │ │ │ │ │ │ ├── Spatial-simple.sln │ │ │ │ │ │ └── Spatial-simple │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Spatial-simple.csproj │ │ │ │ │ │ │ └── Spatial-simple_vs2008.csproj │ │ │ │ │ └── Spatial-wireframe │ │ │ │ │ │ ├── Wireframe.sln │ │ │ │ │ │ └── Wireframe │ │ │ │ │ │ ├── 3D │ │ │ │ │ │ ├── Math3D.cs │ │ │ │ │ │ ├── Matrix3x3.cs │ │ │ │ │ │ ├── ObjLoader.cs │ │ │ │ │ │ ├── Pipeline.cs │ │ │ │ │ │ └── Vector3.cs │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ ├── Wireframe.csproj │ │ │ │ │ │ ├── Wireframe_vs2008.csproj │ │ │ │ │ │ ├── shape.obj │ │ │ │ │ │ └── teapot.obj │ │ │ │ ├── Stepper-full.exe │ │ │ │ ├── StepperExamples │ │ │ │ │ ├── Stepper-full │ │ │ │ │ │ ├── Stepper-full.sln │ │ │ │ │ │ ├── Stepper-full │ │ │ │ │ │ │ ├── 1062_0.ico │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── Stepper-full.csproj │ │ │ │ │ │ │ ├── Stepper-full_vs2008.csproj │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── Stepper-full_vs2008.sln │ │ │ │ │ └── Stepper-simple │ │ │ │ │ │ ├── Stepper-simple.sln │ │ │ │ │ │ └── Stepper-simple │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ ├── Stepper-simple.csproj │ │ │ │ │ │ └── Stepper-simple_vs2008.csproj │ │ │ │ ├── TemperatureChart │ │ │ │ │ ├── TemperatureChart.sln │ │ │ │ │ └── TemperatureChart │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ ├── TemperatureChart.csproj │ │ │ │ │ │ ├── TemperatureChart_vs2008.csproj │ │ │ │ │ │ └── ZedGraph.dll │ │ │ │ ├── TemperatureSensor-full.exe │ │ │ │ ├── TemperatureSensorExamples │ │ │ │ │ ├── TemperatureSensor-full │ │ │ │ │ │ ├── TemperatureSensor-full.sln │ │ │ │ │ │ ├── TemperatureSensor-full │ │ │ │ │ │ │ ├── 1051_1.ico │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TemperatureSensor-full.csproj │ │ │ │ │ │ │ ├── TemperatureSensor-full_vs2008.csproj │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ └── TextInputBox.resx │ │ │ │ │ │ └── TemperatureSensor-full_vs2008.sln │ │ │ │ │ └── TemperatureSensor-simple │ │ │ │ │ │ ├── Backup │ │ │ │ │ │ ├── TemperatureSensor-simple.sln │ │ │ │ │ │ └── TemperatureSensor-simple │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ │ └── TemperatureSensor-simple.csproj │ │ │ │ │ │ ├── TemperatureSensor-simple.sln │ │ │ │ │ │ ├── TemperatureSensor-simple.suo │ │ │ │ │ │ ├── TemperatureSensor-simple │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ ├── TemperatureSensor-simple.csproj │ │ │ │ │ │ ├── TemperatureSensor-simple_vs2008.csproj │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ └── Debug │ │ │ │ │ │ │ │ ├── TemperatureSensor-simple.exe │ │ │ │ │ │ │ │ ├── TemperatureSensor-simple.pdb │ │ │ │ │ │ │ │ ├── TemperatureSensor-simple.vshost.exe │ │ │ │ │ │ │ │ └── TemperatureSensor-simple.vshost.exe.manifest │ │ │ │ │ │ └── obj │ │ │ │ │ │ │ └── Debug │ │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ │ ├── ResolveAssemblyReference.cache │ │ │ │ │ │ │ ├── TemperatureSensor-simple.csproj.FileListAbsolute.txt │ │ │ │ │ │ │ ├── TemperatureSensor-simple.exe │ │ │ │ │ │ │ └── TemperatureSensor-simple.pdb │ │ │ │ │ │ ├── UpgradeLog.XML │ │ │ │ │ │ └── _UpgradeReport_Files │ │ │ │ │ │ ├── UpgradeReport.css │ │ │ │ │ │ ├── UpgradeReport.xslt │ │ │ │ │ │ ├── UpgradeReport_Minus.gif │ │ │ │ │ │ └── UpgradeReport_Plus.gif │ │ │ │ ├── TextLCD-full.exe │ │ │ │ ├── TextLCDExamples │ │ │ │ │ ├── TextLCD-IFKit │ │ │ │ │ │ ├── TextLCD-IFKit.sln │ │ │ │ │ │ └── TextLCD-IFKit │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextLCD-IFKit.csproj │ │ │ │ │ │ │ └── TextLCD-IFKit_vs2008.csproj │ │ │ │ │ ├── TextLCD-full │ │ │ │ │ │ ├── TextLCD-full.sln │ │ │ │ │ │ ├── TextLCD-full │ │ │ │ │ │ │ ├── 1202_2.ico │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ ├── TextInputBox.resx │ │ │ │ │ │ │ ├── TextLCD-full.csproj │ │ │ │ │ │ │ ├── TextLCD-full_vs2008.csproj │ │ │ │ │ │ │ └── TrackBar.dll │ │ │ │ │ │ └── TextLCD-full_vs2008.sln │ │ │ │ │ ├── TextLCD-full_old │ │ │ │ │ │ ├── TextLCD-full.sln │ │ │ │ │ │ └── TextLCD-full │ │ │ │ │ │ │ ├── 1202_2.ico │ │ │ │ │ │ │ ├── ErrorEventBox.Designer.cs │ │ │ │ │ │ │ ├── ErrorEventBox.cs │ │ │ │ │ │ │ ├── ErrorEventBox.resx │ │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ │ │ ├── TextInputBox.Designer.cs │ │ │ │ │ │ │ ├── TextInputBox.cs │ │ │ │ │ │ │ ├── TextInputBox.resx │ │ │ │ │ │ │ ├── TextLCD-full.csproj │ │ │ │ │ │ │ └── TextLCD-full_vs2008.csproj │ │ │ │ │ └── TextLCD-simple │ │ │ │ │ │ ├── TextLCD-simple.sln │ │ │ │ │ │ └── TextLCD-simple │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ ├── TextLCD-simple.csproj │ │ │ │ │ │ └── TextLCD-simple_vs2008.csproj │ │ │ │ └── WPF_VS2010 │ │ │ │ │ └── WPF_IntefaceKit-simple │ │ │ │ │ ├── WPF_IntefaceKit-simple.sln │ │ │ │ │ └── WPF_IntefaceKit-simple │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── MainWindow.xaml │ │ │ │ │ ├── MainWindow.xaml.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── WPF_IntefaceKit-simple.csproj │ │ │ │ │ └── WPF_IntefaceKit-simple.csproj.user │ │ │ ├── Getting_Started_Standard_C-C++.pdf │ │ │ ├── Getting_Started_Visual_Studio_C-C++.pdf │ │ │ ├── Phidget21_C_Doc.zip │ │ │ ├── Phidget21_C_Doc │ │ │ │ ├── annotated.html │ │ │ │ ├── classes.html │ │ │ │ ├── closed.gif │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.png │ │ │ │ ├── ftv2blank.png │ │ │ │ ├── ftv2doc.png │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ ├── ftv2folderopen.png │ │ │ │ ├── ftv2lastnode.png │ │ │ │ ├── ftv2link.png │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ ├── ftv2mnode.png │ │ │ │ ├── ftv2node.png │ │ │ │ ├── ftv2plastnode.png │ │ │ │ ├── ftv2pnode.png │ │ │ │ ├── ftv2vertline.png │ │ │ │ ├── functions.html │ │ │ │ ├── functions_vars.html │ │ │ │ ├── group__phid_i_r.html │ │ │ │ ├── group__phidaccel.html │ │ │ │ ├── group__phidadvservo.html │ │ │ │ ├── group__phidanalog.html │ │ │ │ ├── group__phidbridge.html │ │ │ │ ├── group__phidcommon.html │ │ │ │ ├── group__phidconst.html │ │ │ │ ├── group__phiddict.html │ │ │ │ ├── group__phidenc.html │ │ │ │ ├── group__phidfreq.html │ │ │ │ ├── group__phidgets.html │ │ │ │ ├── group__phidgps.html │ │ │ │ ├── group__phidifkit.html │ │ │ │ ├── group__phidled.html │ │ │ │ ├── group__phidlog.html │ │ │ │ ├── group__phidmanager.html │ │ │ │ ├── group__phidmotorcontrol.html │ │ │ │ ├── group__phidph.html │ │ │ │ ├── group__phidrfid.html │ │ │ │ ├── group__phidservo.html │ │ │ │ ├── group__phidspatial.html │ │ │ │ ├── group__phidstepper.html │ │ │ │ ├── group__phidtemp.html │ │ │ │ ├── group__phidtextlcd.html │ │ │ │ ├── group__phidtextled.html │ │ │ │ ├── group__phidweight.html │ │ │ │ ├── index.html │ │ │ │ ├── main.html │ │ │ │ ├── modules.html │ │ │ │ ├── open.gif │ │ │ │ ├── struct___c_phidget___timestamp.html │ │ │ │ ├── struct___c_phidget_i_r___code_info.html │ │ │ │ ├── struct___c_phidget_spatial___spatial_event_data.html │ │ │ │ ├── struct_g_p_g_g_a.html │ │ │ │ ├── struct_g_p_g_s_a.html │ │ │ │ ├── struct_g_p_g_s_v.html │ │ │ │ ├── struct_g_p_r_m_c.html │ │ │ │ ├── struct_g_p_s_date.html │ │ │ │ ├── struct_g_p_s_sat_info.html │ │ │ │ ├── struct_g_p_s_time.html │ │ │ │ ├── struct_g_p_v_t_g.html │ │ │ │ ├── struct_n_m_e_a_data.html │ │ │ │ ├── tab_b.gif │ │ │ │ ├── tab_l.gif │ │ │ │ ├── tab_r.gif │ │ │ │ ├── tabs.css │ │ │ │ └── tree.html │ │ │ ├── VC++ Examples │ │ │ │ ├── Debug │ │ │ │ │ └── TemperatureSensor-simple.exe │ │ │ │ ├── README.txt │ │ │ │ ├── Release │ │ │ │ │ ├── InterfaceKit-simple.exe │ │ │ │ │ └── TemperatureSensor-simple.exe │ │ │ │ ├── UpgradeLog.XML │ │ │ │ ├── Visual Studio Phidgets Examples.sdf │ │ │ │ ├── Visual Studio Phidgets Examples.sln │ │ │ │ ├── Visual Studio Phidgets Examples.sln.old │ │ │ │ ├── Visual Studio Phidgets Examples.suo │ │ │ │ ├── Visual Studio Projects │ │ │ │ │ ├── Accelerometer-simple │ │ │ │ │ │ ├── Accelerometer-simple.vcproj │ │ │ │ │ │ ├── Accelerometer-simple.vcxproj │ │ │ │ │ │ ├── Accelerometer-simple.vcxproj.filters │ │ │ │ │ │ └── Accelerometer-simple.vcxproj.user │ │ │ │ │ ├── AdvancedServo-simple │ │ │ │ │ │ ├── AdvancedServo-simple.vcproj │ │ │ │ │ │ ├── AdvancedServo-simple.vcxproj │ │ │ │ │ │ ├── AdvancedServo-simple.vcxproj.filters │ │ │ │ │ │ └── AdvancedServo-simple.vcxproj.user │ │ │ │ │ ├── Analog-simple │ │ │ │ │ │ ├── Analog-simple.vcproj │ │ │ │ │ │ ├── Analog-simple.vcxproj │ │ │ │ │ │ ├── Analog-simple.vcxproj.filters │ │ │ │ │ │ └── Analog-simple.vcxproj.user │ │ │ │ │ ├── Bridge-simple │ │ │ │ │ │ ├── Bridge-simple.vcproj │ │ │ │ │ │ ├── Bridge-simple.vcxproj │ │ │ │ │ │ ├── Bridge-simple.vcxproj.filters │ │ │ │ │ │ └── Bridge-simple.vcxproj.user │ │ │ │ │ ├── Dictionary-simple │ │ │ │ │ │ ├── Dictionary-simple.vcproj │ │ │ │ │ │ ├── Dictionary-simple.vcxproj │ │ │ │ │ │ ├── Dictionary-simple.vcxproj.filters │ │ │ │ │ │ └── Dictionary-simple.vcxproj.user │ │ │ │ │ ├── Encoder-simple │ │ │ │ │ │ ├── Encoder-simple.vcproj │ │ │ │ │ │ ├── Encoder-simple.vcxproj │ │ │ │ │ │ ├── Encoder-simple.vcxproj.filters │ │ │ │ │ │ └── Encoder-simple.vcxproj.user │ │ │ │ │ ├── FrequencyCounter-simple │ │ │ │ │ │ ├── FrequencyCounter-simple.vcproj │ │ │ │ │ │ ├── FrequencyCounter-simple.vcxproj │ │ │ │ │ │ ├── FrequencyCounter-simple.vcxproj.filters │ │ │ │ │ │ └── FrequencyCounter-simple.vcxproj.user │ │ │ │ │ ├── GPS-simple │ │ │ │ │ │ ├── GPS-simple.vcproj │ │ │ │ │ │ ├── GPS-simple.vcxproj │ │ │ │ │ │ ├── GPS-simple.vcxproj.filters │ │ │ │ │ │ └── GPS-simple.vcxproj.user │ │ │ │ │ ├── HelloWorld │ │ │ │ │ │ ├── HelloWorld.sln │ │ │ │ │ │ ├── HelloWorld.vcproj │ │ │ │ │ │ ├── HelloWorld.vcxproj │ │ │ │ │ │ ├── HelloWorld.vcxproj.filters │ │ │ │ │ │ └── HelloWorld.vcxproj.user │ │ │ │ │ ├── IR-simple │ │ │ │ │ │ ├── IR-simple.vcproj │ │ │ │ │ │ ├── IR-simple.vcxproj │ │ │ │ │ │ ├── IR-simple.vcxproj.filters │ │ │ │ │ │ └── IR-simple.vcxproj.user │ │ │ │ │ ├── InterfaceKit-simple │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ │ │ ├── InterfaceKit-simple.log │ │ │ │ │ │ │ ├── InterfaceKit-simple.obj │ │ │ │ │ │ │ ├── cl.command.1.tlog │ │ │ │ │ │ │ └── vc100.pdb │ │ │ │ │ │ ├── InterfaceKit-simple.sdf │ │ │ │ │ │ ├── InterfaceKit-simple.sln │ │ │ │ │ │ ├── InterfaceKit-simple.suo │ │ │ │ │ │ ├── InterfaceKit-simple.vcproj │ │ │ │ │ │ ├── InterfaceKit-simple.vcxproj │ │ │ │ │ │ ├── InterfaceKit-simple.vcxproj.filters │ │ │ │ │ │ ├── InterfaceKit-simple.vcxproj.user │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ │ │ ├── InterfaceKit-simple.Build.CppClean.log │ │ │ │ │ │ │ ├── InterfaceKit-simple.exe.intermediate.manifest │ │ │ │ │ │ │ ├── InterfaceKit-simple.lastbuildstate │ │ │ │ │ │ │ ├── InterfaceKit-simple.log │ │ │ │ │ │ │ ├── InterfaceKit-simple.obj │ │ │ │ │ │ │ ├── cl.command.1.tlog │ │ │ │ │ │ │ ├── link.command.1.tlog │ │ │ │ │ │ │ ├── link.read.1.tlog │ │ │ │ │ │ │ ├── link.write.1.tlog │ │ │ │ │ │ │ ├── mt.command.1.tlog │ │ │ │ │ │ │ ├── mt.read.1.tlog │ │ │ │ │ │ │ ├── mt.write.1.tlog │ │ │ │ │ │ │ └── vc100.pdb │ │ │ │ │ │ └── ipch │ │ │ │ │ │ │ └── interfacekit-simple-d5cae5c2 │ │ │ │ │ │ │ └── interfacekit-simple-a4f2357c.ipch │ │ │ │ │ ├── LED-simple │ │ │ │ │ │ ├── LED-simple.vcproj │ │ │ │ │ │ ├── LED-simple.vcxproj │ │ │ │ │ │ ├── LED-simple.vcxproj.filters │ │ │ │ │ │ └── LED-simple.vcxproj.user │ │ │ │ │ ├── Manager-simple │ │ │ │ │ │ ├── Manager-simple.vcproj │ │ │ │ │ │ ├── Manager-simple.vcxproj │ │ │ │ │ │ ├── Manager-simple.vcxproj.filters │ │ │ │ │ │ └── Manager-simple.vcxproj.user │ │ │ │ │ ├── MotorControl-simple │ │ │ │ │ │ ├── MotorControl-simple.vcproj │ │ │ │ │ │ ├── MotorControl-simple.vcxproj │ │ │ │ │ │ ├── MotorControl-simple.vcxproj.filters │ │ │ │ │ │ └── MotorControl-simple.vcxproj.user │ │ │ │ │ ├── PHSensor-simple │ │ │ │ │ │ ├── PHSensor-simple.vcproj │ │ │ │ │ │ ├── PHSensor-simple.vcxproj │ │ │ │ │ │ ├── PHSensor-simple.vcxproj.filters │ │ │ │ │ │ └── PHSensor-simple.vcxproj.user │ │ │ │ │ ├── RFID-simple │ │ │ │ │ │ ├── RFID-simple.vcproj │ │ │ │ │ │ ├── RFID-simple.vcxproj │ │ │ │ │ │ ├── RFID-simple.vcxproj.filters │ │ │ │ │ │ └── RFID-simple.vcxproj.user │ │ │ │ │ ├── Servo-simple │ │ │ │ │ │ ├── Servo-simple.vcproj │ │ │ │ │ │ ├── Servo-simple.vcxproj │ │ │ │ │ │ ├── Servo-simple.vcxproj.filters │ │ │ │ │ │ └── Servo-simple.vcxproj.user │ │ │ │ │ ├── Spatial-simple │ │ │ │ │ │ ├── Spatial-simple.vcproj │ │ │ │ │ │ ├── Spatial-simple.vcxproj │ │ │ │ │ │ ├── Spatial-simple.vcxproj.filters │ │ │ │ │ │ └── Spatial-simple.vcxproj.user │ │ │ │ │ ├── Stepper-simple │ │ │ │ │ │ ├── Stepper-simple.vcproj │ │ │ │ │ │ ├── Stepper-simple.vcxproj │ │ │ │ │ │ ├── Stepper-simple.vcxproj.filters │ │ │ │ │ │ └── Stepper-simple.vcxproj.user │ │ │ │ │ ├── TemperatureSensor-simple │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ │ │ ├── TemperatureSensor-simple.exe.intermediate.manifest │ │ │ │ │ │ │ ├── TemperatureSensor-simple.lastbuildstate │ │ │ │ │ │ │ ├── TemperatureSensor-simple.log │ │ │ │ │ │ │ ├── TemperatureSensor-simple.obj │ │ │ │ │ │ │ ├── cl.command.1.tlog │ │ │ │ │ │ │ ├── link.command.1.tlog │ │ │ │ │ │ │ ├── link.read.1.tlog │ │ │ │ │ │ │ ├── link.write.1.tlog │ │ │ │ │ │ │ ├── mt.command.1.tlog │ │ │ │ │ │ │ ├── mt.read.1.tlog │ │ │ │ │ │ │ ├── mt.write.1.tlog │ │ │ │ │ │ │ └── vc100.pdb │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ │ │ ├── TemperatureSensor-simple.exe.intermediate.manifest │ │ │ │ │ │ │ ├── TemperatureSensor-simple.lastbuildstate │ │ │ │ │ │ │ ├── TemperatureSensor-simple.log │ │ │ │ │ │ │ ├── TemperatureSensor-simple.obj │ │ │ │ │ │ │ ├── cl.command.1.tlog │ │ │ │ │ │ │ ├── link.command.1.tlog │ │ │ │ │ │ │ ├── link.read.1.tlog │ │ │ │ │ │ │ ├── link.write.1.tlog │ │ │ │ │ │ │ ├── mt.command.1.tlog │ │ │ │ │ │ │ ├── mt.read.1.tlog │ │ │ │ │ │ │ ├── mt.write.1.tlog │ │ │ │ │ │ │ └── vc100.pdb │ │ │ │ │ │ ├── TemperatureSensor-simple.vcproj │ │ │ │ │ │ ├── TemperatureSensor-simple.vcxproj │ │ │ │ │ │ ├── TemperatureSensor-simple.vcxproj.filters │ │ │ │ │ │ └── TemperatureSensor-simple.vcxproj.user │ │ │ │ │ └── TextLCD-simple │ │ │ │ │ │ ├── TextLCD-simple.vcproj │ │ │ │ │ │ ├── TextLCD-simple.vcxproj │ │ │ │ │ │ ├── TextLCD-simple.vcxproj.filters │ │ │ │ │ │ └── TextLCD-simple.vcxproj.user │ │ │ │ ├── _UpgradeReport_Files │ │ │ │ │ ├── UpgradeReport.css │ │ │ │ │ ├── UpgradeReport.xslt │ │ │ │ │ ├── UpgradeReport_Minus.gif │ │ │ │ │ └── UpgradeReport_Plus.gif │ │ │ │ ├── ipch │ │ │ │ │ └── temperaturesensor-simple-61ab4ac0 │ │ │ │ │ │ ├── temperaturesensor-simple-277ac1ab.ipch │ │ │ │ │ │ └── temperaturesensor-simple-a1b790e5.ipch │ │ │ │ ├── phidget21.h │ │ │ │ ├── phidget21.lib │ │ │ │ └── source │ │ │ │ │ ├── Accelerometer-simple.c │ │ │ │ │ ├── AdvancedServo-simple.c │ │ │ │ │ ├── Analog-simple.c │ │ │ │ │ ├── Bridge-simple.c │ │ │ │ │ ├── Dictionary-simple.c │ │ │ │ │ ├── Encoder-simple.c │ │ │ │ │ ├── FrequencyCounter-simple.c │ │ │ │ │ ├── GPS-simple.c │ │ │ │ │ ├── HelloWorld.c │ │ │ │ │ ├── IR-simple.c │ │ │ │ │ ├── InterfaceKit-simple.c │ │ │ │ │ ├── LED-simple.c │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Manager-simple.c │ │ │ │ │ ├── MotorControl-simple.c │ │ │ │ │ ├── PHSensor-simple.c │ │ │ │ │ ├── README │ │ │ │ │ ├── RFID-simple.c │ │ │ │ │ ├── Servo-simple.c │ │ │ │ │ ├── Spatial-simple.c │ │ │ │ │ ├── Stepper-simple.c │ │ │ │ │ ├── TemperatureSensor-simple.c │ │ │ │ │ ├── TextLCD-simple.c │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── missing │ │ │ │ │ └── version.sh │ │ │ ├── VCpp_2.1.8.20120503.zip │ │ │ ├── Windows Header and Lib Files │ │ │ │ ├── Phidget21.NET.dll │ │ │ │ ├── Phidget21.NET1.1.dll │ │ │ │ ├── phidget21.h │ │ │ │ ├── x64 │ │ │ │ │ ├── Phidget21COM.dll │ │ │ │ │ ├── PhidgetWebservice21.exe │ │ │ │ │ ├── phidget21.dll │ │ │ │ │ └── phidget21.lib │ │ │ │ └── x86 │ │ │ │ │ ├── Phidget21COM.dll │ │ │ │ │ ├── PhidgetWebservice21.exe │ │ │ │ │ └── phidget21.dll │ │ │ ├── phidget21-c-examples_2.1.8.20120514.tar.gz │ │ │ └── phidget21bcc_2.1.8.20120503.zip │ │ ├── Effects_Of_Long_Wires_Tutorial.pdf │ │ ├── Known_Issues_and_Workarounds.pdf │ │ ├── Library_Information.pdf │ │ ├── Programming_Manual.pdf │ │ ├── Python │ │ │ ├── Getting_Started_Python.pdf │ │ │ ├── PhidgetsPython_2.1.8.20120503.zip │ │ │ ├── PythonDoc.zip │ │ │ └── Python_2.1.8.20120503.zip │ │ └── Working_With_PhidgetWebservice.pdf │ └── Windows Drivers │ │ └── Phidget-x86_2.1.8.20120503.exe │ └── datasheets │ ├── 24v Converter - Mouser 580-UWE-24-3-Q12P-C Data Sheet.pdf │ ├── 5v DC DC Converter.pdf │ ├── AND Gate - sn74lvc1g08.pdf │ ├── Diode - 1N4148_1N4448.pdf │ ├── Inverters - cd74hc14.pdf │ ├── LED - 550-xx04.pdf │ ├── Optoisolator - AV02-0773EN.pdf │ ├── PushButton - MS-100861.pdf │ ├── Relay - SPDT - G5LA_E_0911.pdf │ ├── Resistor - SEI-RNCP.pdf │ └── TVS Diodes - Littelfuse_TVS-Diode_LCE.pdf ├── eagle ├── .gitignore ├── BB-xM_REV_C-2011-05-23 │ └── BB-xM REV C │ │ ├── BEAGLE-xM_BOM_REVC.xls │ │ ├── BEAGLE-xM_CAD_REV_C.zip │ │ ├── BEAGLE-xM_Gerber.zip │ │ ├── BEAGLE-xM_ODB.tgz │ │ ├── BEAGLE-xM_ORCAD_REV_C.zip │ │ ├── BEAGLE-xM_SCHEMATIC_REV_C.pdf │ │ └── BEAGLE-xM_SRM_REV_C_1_0.pdf ├── Ignition Board │ ├── Launch_Tower_Ignition_Board_v6-4.brd │ ├── Launch_Tower_Ignition_Board_v6-4.pdf │ ├── Launch_Tower_Ignition_Board_v6-4.sch │ └── cam │ │ ├── Launch_Tower_Ignition_Board_v6-4-bot.gbx │ │ ├── Launch_Tower_Ignition_Board_v6-4-dim.gbx │ │ ├── Launch_Tower_Ignition_Board_v6-4-msk-bot.gbx │ │ ├── Launch_Tower_Ignition_Board_v6-4-msk-top.gbx │ │ ├── Launch_Tower_Ignition_Board_v6-4-top-slk.gbx │ │ ├── Launch_Tower_Ignition_Board_v6-4-top.gbx │ │ └── Launch_Tower_Ignition_Board_v6-4.xln ├── LTC Connector Interface.brd ├── LTC Connector Interface.sch ├── LTC Whole System Schematic.sch ├── LTC2 Top-level Schematic.sch ├── Library │ └── launch-tower.lbr ├── Phidgets - CAD Files │ ├── 1014_2.step │ ├── 1019_1.step │ └── 1124_0.step ├── Power Interface Board │ ├── Launch_Tower_Power_Interface_Board_v1-4.brd │ ├── Launch_Tower_Power_Interface_Board_v1-4.sch │ └── cam │ │ ├── Launch_Tower_Power_Interface_Board_v1-4-bot.gbx │ │ ├── Launch_Tower_Power_Interface_Board_v1-4-dim.gbx │ │ ├── Launch_Tower_Power_Interface_Board_v1-4-msk-bot.gbx │ │ ├── Launch_Tower_Power_Interface_Board_v1-4-msk-top.gbx │ │ ├── Launch_Tower_Power_Interface_Board_v1-4-top-slk.gbx │ │ ├── Launch_Tower_Power_Interface_Board_v1-4-top.gbx │ │ └── Launch_Tower_Power_Interface_Board_v1-4.xln ├── Safety Schematic │ └── PSAS_Safety_System.sch └── launch-tower.lbr ├── laser_cut_drawings ├── Arrow.svg ├── LCT Boards - Design.svg ├── LCT Boards - Laser Cutter Ready.svg ├── LTC-Interior-Long Side.svg ├── LTC-Interior-Power Conenctor - v2.svg ├── LTC-Interior-Power Conenctor.svg ├── LTC-Interior-Short Side.svg ├── LTC-Interior-Switch Holder - v2.svg ├── LTC-Interior-Switch Holder.svg └── Machinable Fonts │ ├── covertops.ttf │ ├── covertops3d.ttf │ ├── covertops3dital.ttf │ ├── covertopscond.ttf │ ├── covertopscondital.ttf │ ├── covertopsexpand.ttf │ ├── covertopsexpandital.ttf │ ├── covertopsital.ttf │ ├── covertopsleft.ttf │ ├── covertopsout.ttf │ ├── covertopsoutital.ttf │ ├── gunplay 3d.ttf │ └── gunplay rg.ttf ├── ltc3 ├── README.md ├── TODO.md ├── bom │ ├── cell_protection │ │ └── LTC3_Cell_Protection.xlsx │ ├── charge_controller │ │ └── LTC3_Charge_Controller.xlsx │ └── ltc │ │ └── LTC3.xlsx ├── build │ ├── README.mkd │ ├── gerbers │ │ ├── cell_protection │ │ │ ├── LTC3_Cell_Protection-B.Cu.gbl │ │ │ ├── LTC3_Cell_Protection-B.Mask.gbs │ │ │ ├── LTC3_Cell_Protection-B.Paste.gbp │ │ │ ├── LTC3_Cell_Protection-B.SilkS.gbo │ │ │ ├── LTC3_Cell_Protection-Edge.Cuts.gm1 │ │ │ ├── LTC3_Cell_Protection-F.Cu.gtl │ │ │ ├── LTC3_Cell_Protection-F.Mask.gts │ │ │ ├── LTC3_Cell_Protection-F.Paste.gtp │ │ │ ├── LTC3_Cell_Protection-F.SilkS.gto │ │ │ ├── LTC3_Cell_Protection-In1.Ground.Cu.g2 │ │ │ ├── LTC3_Cell_Protection-In2.Cu.g3 │ │ │ ├── LTC3_Cell_Protection-NPTH.drl │ │ │ └── LTC3_Cell_Protection.drl │ │ ├── charge_controller │ │ │ ├── LTC3_Charge_Controller-B.Cu.gbl │ │ │ ├── LTC3_Charge_Controller-B.Mask.gbs │ │ │ ├── LTC3_Charge_Controller-B.Paste.gbp │ │ │ ├── LTC3_Charge_Controller-B.SilkS.gbo │ │ │ ├── LTC3_Charge_Controller-Edge.Cuts.gm1 │ │ │ ├── LTC3_Charge_Controller-F.Cu.gtl │ │ │ ├── LTC3_Charge_Controller-F.Mask.gts │ │ │ ├── LTC3_Charge_Controller-F.Paste.gtp │ │ │ ├── LTC3_Charge_Controller-F.SilkS.gto │ │ │ ├── LTC3_Charge_Controller-In1.Ground.Cu.g2 │ │ │ ├── LTC3_Charge_Controller-In2.Cu.g3 │ │ │ ├── LTC3_Charge_Controller-NPTH.drl │ │ │ └── LTC3_Charge_Controller.drl │ │ └── ltc │ │ │ ├── LTC3-B.Cu.gbl │ │ │ ├── LTC3-B.Mask.gbs │ │ │ ├── LTC3-B.Paste.gbp │ │ │ ├── LTC3-B.SilkS.gbo │ │ │ ├── LTC3-Edge.Cuts.gm1 │ │ │ ├── LTC3-F.Cu.gtl │ │ │ ├── LTC3-F.Mask.gts │ │ │ ├── LTC3-F.Paste.gtp │ │ │ ├── LTC3-F.SilkS.gto │ │ │ ├── LTC3-In1.Ground.Cu.g2 │ │ │ ├── LTC3-In2.Power.Cu.g3 │ │ │ ├── LTC3-NPTH.drl │ │ │ └── LTC3.drl │ └── schematics │ │ ├── 1-Charge_Controller.pdf │ │ ├── 2-Cell_Protection.pdf │ │ ├── 3-Launch_Tower_Computer.pdf │ │ └── README.mkd ├── doc │ ├── .gitignore │ ├── WTF.adoc │ ├── datasheets │ │ ├── BeagleBone_Black │ │ │ ├── BeagleBone_Black_System_Reference_Manual-rev_C1.pdf │ │ │ ├── BeagleBone_Black_expansion_headers.png │ │ │ ├── BeagleBone_Black_schematic.pdf │ │ │ └── TI-AM335x_Sitara_Processors_Technical_Reference_Manual-SPRUH73L.pdf │ │ ├── LT8490 │ │ │ ├── Linear_Technology-LT8490-High_Voltage_High_Current_Buck_Boost_Battery_Charge_Controller_w_MPPT.pdf │ │ │ └── Linear_Technology-LT8705-Synchronous_4_Switch_Buck_Boost_DC_DC_Converter-design_reference_for_LT8490.pdf │ │ ├── LTC299x │ │ │ ├── Linear-LTC2990-Quad_I2C_Voltage_Current_and_Temp_Monitor.pdf │ │ │ └── Linear-LTC2991-Octal_I2C_Voltage_Current_and_Temp_Monitor.pdf │ │ ├── ON_Semi-CAT24C256-256_kb_I2C_CMOS_Serial_EEPROM.pdf │ │ ├── Omron-G5LE-Single_Pole_10A_Power_Relay.pdf │ │ ├── Panasonic-EVQQ2-6mm_Square_Thin_SMD_Touch_Switches.pdf │ │ ├── README.md │ │ ├── TE-W28_Series-Push_To_Reset_Fuseholder_Type_Thermal_Circuit_Breaker.pdf │ │ ├── TI-PTN78020-6A_Wide_Input_Adjustable_Switching_Regulator.pdf │ │ ├── bq77PL900 │ │ │ ├── TI-Cell_Balancing_With_The_bq77PL900.pdf │ │ │ ├── TI-bq77PL900-5_10_Series_Cell_LiPo_Battery_Protector_and_Analog_Front_End.pdf │ │ │ └── TI-bq77PL900-evaluation_board_users_guide.pdf │ │ ├── connectors │ │ │ ├── Anderson-PowerPole_housing-drawing.pdf │ │ │ ├── Anderson-Powerpole_Connectors_PP15_to_PP45.pdf │ │ │ ├── JST-XH-2.5mm_pitch_Disconnectable_Crimp_style_connectors.pdf │ │ │ ├── Molex-43045-Micro_Fit_3_dual_row_vertical_through_hole_header.pdf │ │ │ ├── Molex-Micro_Fit_3_Family.pdf │ │ │ ├── Molex-Micro_Fit_3_Product_Specification.pdf │ │ │ └── Stewart-SS7188S-RJ45_Shielded_Jack.pdf │ │ ├── fuses │ │ │ ├── Keystone-3557_2-automotive_fuse_holder_vertical.pdf │ │ │ └── Littelfuse_ATOF_Datasheet.pdf │ │ ├── indicators │ │ │ ├── Dialight-557_Series-High_Intensity_LED_Panel_Mount_Indicators.pdf │ │ │ ├── Dialight-557_Series-mechanical_drawing.pdf │ │ │ ├── Lite_On-LTST_C150CKT-LED_Red_1206.pdf │ │ │ └── Lite_On-LTST_C150GKT-LED_Green_1206.pdf │ │ ├── logic │ │ │ ├── TI-CD74HC14-High_Speed_CMOS_Logic_Hex_Inverting_Schmitt_Trigger.pdf │ │ │ └── TI-SN74AHC1G08-Single_Two_Input_Positive_AND_Gate.pdf │ │ ├── passives │ │ │ ├── Coilcraft-SER2900-Shielded_Power_Inductors.pdf │ │ │ └── Semitec-AT_Thermistor-High_Precision_Thermistor.pdf │ │ └── semiconductors │ │ │ ├── Central_Semi-CMMR1U_Series-Ultra_Fast_SMT_Rectifier.pdf │ │ │ ├── ComChip-CDSU4148-SMD_Switching_Diode.pdf │ │ │ ├── Diodes_Inc-BZT52C13-Surface_Mount_Zener_Diode.pdf │ │ │ ├── Diodes_Inc-SMAZnn-1W_Surface_Mount_Zener_Diode.pdf │ │ │ ├── Diodes_Inc-ZVN4525E6-250V_N_Channel_Enhancement_Mode_MOSFET.pdf │ │ │ ├── Diodes_Inc-ZVP3310FTA-P_Channel_Enhancement_Mode_Vertical_DMOS_FET.pdf │ │ │ ├── Fairchild-2N3904-NPN_General_Purpose_Amplifier.pdf │ │ │ ├── Fairchild-BSS138-N_Channel_Logic_Level_Enhancement_Mode_FET.pdf │ │ │ ├── Fairchild-NDS9407-60V_PChannel_PowerTrench_MOSFET.pdf │ │ │ ├── Infineon-BSC028N06NS-OptiMOS_Power_Transistor.pdf │ │ │ ├── Infineon-PG_TDSON_8_Package_Overview.pdf │ │ │ ├── Lite_On-4N25-Optocoupler.pdf │ │ │ ├── NXP-PMV45EN-N_Channel_TrenchMOS_logic_level_FET.pdf │ │ │ ├── ON_Semi-MM3ZxxxT1G_Series-Zener_Voltage_Regulators.pdf │ │ │ ├── ON_Semi-MMBT5550LT1G-High_Voltage_NPN_BJT.pdf │ │ │ ├── Picor-PI2127-60_Volt_12_Amp_Full_Function_Active_ORing_Solution.pdf │ │ │ ├── TI-SNx52x0-USB_Port_Transient_Suppressors.pdf │ │ │ ├── Toshiba-TLP3542-Photo_Relay.pdf │ │ │ └── Vishay-SUM110P08_11L-P_Channel_80V_MOSFET.pdf │ ├── design │ │ ├── BQ77PL900_configuration.adoc │ │ ├── Charge_Controller_Component_Values_Review.pdf │ │ ├── LTC3_Design_Spec.adoc │ │ ├── LTC3_Power_Configuration.adoc │ │ ├── battery_charging_notes.txt │ │ └── images │ │ │ └── LTC_PV_panel_specs_decal.jpg │ ├── ltc2_review │ │ ├── LTC2_Connector_Interface_Schematic.png │ │ ├── LTC2_Ignition_Board_Schematic.png │ │ ├── LTC2_Power_Board_Schematic.png │ │ ├── LTC2_Safety_Schematic.png │ │ └── LTC2_Whole_System_Schematic.png │ ├── requirements │ │ ├── LTC3_Requirements_Spec.adoc │ │ └── images │ │ │ ├── LTC_I.jpeg │ │ │ ├── LTC_II.jpeg │ │ │ ├── LTC_II_Bulkhead_Door.jpeg │ │ │ ├── LTC_II_LiPo_Ignition_Battery_Pack.jpeg │ │ │ ├── LTC_II_Phidget_Interface_Board.jpeg │ │ │ ├── LTC_II_Power_Board.jpeg │ │ │ └── LTC_II_Power_Connectors.jpeg │ ├── service │ │ └── LTC3_Service_Manual.adoc │ ├── third_party │ │ ├── BBB_Linux_I2C_Bus_Naming.pdf │ │ ├── README.md │ │ └── datko-BeagleBone_Black_I2C_References.pdf │ └── user │ │ └── LTC3_User_Manual.adoc ├── kicad │ ├── .gitignore │ ├── cell_protection │ │ ├── LTC3_Cell_Protection-cache.lib │ │ ├── LTC3_Cell_Protection.kicad_pcb │ │ ├── LTC3_Cell_Protection.net │ │ ├── LTC3_Cell_Protection.pro │ │ ├── LTC3_Cell_Protection.sch │ │ ├── fp-lib-table │ │ └── sym-lib-table │ ├── charge_controller │ │ ├── LTC3_Charge_Controller-cache.lib │ │ ├── LTC3_Charge_Controller.kicad_pcb │ │ ├── LTC3_Charge_Controller.net │ │ ├── LTC3_Charge_Controller.pro │ │ ├── LTC3_Charge_Controller.sch │ │ ├── fp-lib-table │ │ └── sym-lib-table │ ├── fp-lib-table │ ├── libs │ │ ├── footprints.pretty │ │ │ ├── BQ77PL900.kicad_mod │ │ │ ├── BeagleBone_Outline.kicad_mod │ │ │ ├── Coilcraft_SER2900.kicad_mod │ │ │ ├── Fuseholder_Auto_Blade_Regular_Keystone_3557-2.kicad_mod │ │ │ ├── G5LE-14.kicad_mod │ │ │ ├── LGA-17.kicad_mod │ │ │ ├── LT8490.kicad_mod │ │ │ ├── MSOP-10.kicad_mod │ │ │ ├── MSOP-16.kicad_mod │ │ │ ├── MountingHole_0.1120in_number4.kicad_mod │ │ │ ├── PG-TDSON-8.kicad_mod │ │ │ ├── PSOP-6.kicad_mod │ │ │ ├── PTN78020W.kicad_mod │ │ │ ├── RJ45_8_SHIELDED.kicad_mod │ │ │ ├── S2BPHKS.kicad_mod │ │ │ ├── SOT-26.kicad_mod │ │ │ └── Via_.6mm.kicad_mod │ │ └── symbols │ │ │ ├── 4n35.dcm │ │ │ ├── 4n35.lib │ │ │ ├── 741g08.dcm │ │ │ ├── 741g08.lib │ │ │ ├── BeagleBone_Black.dcm │ │ │ ├── BeagleBone_Black.lib │ │ │ ├── CD74HC14.dcm │ │ │ ├── CD74HC14.lib │ │ │ ├── EEPROMs.dcm │ │ │ ├── EEPROMs.lib │ │ │ ├── LT8490.dcm │ │ │ ├── LT8490.lib │ │ │ ├── LTC299x.dcm │ │ │ ├── LTC299x.lib │ │ │ ├── MOSFET_SO8.dcm │ │ │ ├── MOSFET_SO8.lib │ │ │ ├── MOSFET_SOT26.dcm │ │ │ ├── MOSFET_SOT26.lib │ │ │ ├── PI2127.dcm │ │ │ ├── PI2127.lib │ │ │ ├── PMV45EN.dcm │ │ │ ├── PMV45EN.lib │ │ │ ├── PTN78020n.dcm │ │ │ ├── PTN78020n.lib │ │ │ ├── SNx52x0.dcm │ │ │ ├── SNx52x0.lib │ │ │ ├── SUM110P08-11.dcm │ │ │ ├── SUM110P08-11.lib │ │ │ ├── TLP.dcm │ │ │ ├── TLP.lib │ │ │ ├── battery_single_cell.dcm │ │ │ ├── battery_single_cell.lib │ │ │ ├── bq77PL900.dcm │ │ │ ├── bq77PL900.lib │ │ │ ├── breakers.dcm │ │ │ ├── breakers.lib │ │ │ ├── power_nodes.dcm │ │ │ ├── power_nodes.lib │ │ │ ├── relay_1c.dcm │ │ │ ├── relay_1c.lib │ │ │ ├── switches2.dcm │ │ │ └── switches2.lib │ ├── ltc │ │ ├── LTC3-cache.lib │ │ ├── LTC3.kicad_pcb │ │ ├── LTC3.net │ │ ├── LTC3.pro │ │ ├── LTC3.sch │ │ ├── beaglebone_cape.sch │ │ ├── dcdc_converter.sch │ │ ├── external_power.sch │ │ ├── external_triggers.sch │ │ ├── fp-lib-table │ │ ├── rocket_interface.sch │ │ └── sym-lib-table │ └── sym-lib-table ├── misc │ ├── Charging_Circuit_Component_Value_Finder.m │ └── KiCad_v4_to_V5_Conversion │ │ ├── README.md │ │ ├── eeschema_v4_to_v5.sed │ │ ├── eeschema_v4_to_v5_base.sed │ │ └── make_sed_rules_for_local_symbols.sed └── temp │ ├── Enclosures │ ├── LCom-Vented_Weatherproof_Industrial_Enclosure_with_Mounting_Plate.pdf │ ├── LCom-Weatherproof_Enclosure_with_Mounting_Plate.pdf │ ├── LCom-Weatherproof_Enclosure_with_Transparent_Lexan_Window_and_Mounting_Plate.pdf │ └── other_suppliers.txt │ ├── LTC2990.md │ ├── README.md │ └── Weatherproof_Ethernet_Connectors │ ├── Conec-IP67_RJ45_Inline_Coupler.pdf │ ├── VPI-Cable_Side_Cable_Shield-drawing.pdf │ ├── VPI-Cable_Side_RJ45_Cap-drawing.pdf │ ├── VPI-Case_Side_RJ45_Connector_w_Jack-drawing.pdf │ └── VPI-Waterproof_RJ45_Connectors.pdf └── os └── rootfs └── etc ├── init.d └── phidgetwebservice └── network └── interfaces /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/.gitignore -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/README.markdown -------------------------------------------------------------------------------- /doc/Installing_Debian_on_BeagleBoard.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/Installing_Debian_on_BeagleBoard.markdown -------------------------------------------------------------------------------- /doc/LTC_Diagnostic_Procedure.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/LTC_Diagnostic_Procedure.markdown -------------------------------------------------------------------------------- /doc/Launch_Tower_Computer_Setup.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/Launch_Tower_Computer_Setup.markdown -------------------------------------------------------------------------------- /doc/Launch_Tower_Instructions.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/Launch_Tower_Instructions.markdown -------------------------------------------------------------------------------- /doc/System_Power_Draw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/System_Power_Draw.txt -------------------------------------------------------------------------------- /doc/diagrams/Connectors_Polarity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/diagrams/Connectors_Polarity.png -------------------------------------------------------------------------------- /doc/diagrams/LTC_Component_Map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/diagrams/LTC_Component_Map.svg -------------------------------------------------------------------------------- /doc/diagrams/LTC_High_Level_Diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/diagrams/LTC_High_Level_Diagram.svg -------------------------------------------------------------------------------- /doc/diagrams/LTC_connections_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/diagrams/LTC_connections_schematic.png -------------------------------------------------------------------------------- /doc/diagrams/Phidgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/diagrams/Phidgets.png -------------------------------------------------------------------------------- /doc/diagrams/Powerpole_Connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/diagrams/Powerpole_Connection.png -------------------------------------------------------------------------------- /doc/diagrams/Umbilical_Connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/diagrams/Umbilical_Connection.png -------------------------------------------------------------------------------- /doc/powerpoint/PSAS-Rocket_Ready_Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/powerpoint/PSAS-Rocket_Ready_Schematic.pdf -------------------------------------------------------------------------------- /doc/powerpoint/PSAS-Rocket_Ready_Schematic.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/powerpoint/PSAS-Rocket_Ready_Schematic.ppt -------------------------------------------------------------------------------- /doc/powerpoint/PSAS_Launch_Tower_Upgrade-PRESENTATION.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/powerpoint/PSAS_Launch_Tower_Upgrade-PRESENTATION.pdf -------------------------------------------------------------------------------- /doc/powerpoint/PSAS_Launch_Tower_Upgrade-PRESENTATION.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/powerpoint/PSAS_Launch_Tower_Upgrade-PRESENTATION.ppt -------------------------------------------------------------------------------- /doc/powerpoint/PSAS_Launch_Tower_Upgrade.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/powerpoint/PSAS_Launch_Tower_Upgrade.pdf -------------------------------------------------------------------------------- /doc/powerpoint/PSAS_Launch_Tower_Upgrade.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/powerpoint/PSAS_Launch_Tower_Upgrade.ppt -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1019_1 - Product_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1019_1 - Product_Manual.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503.zip -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Analog-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Analog-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Bridge-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Bridge-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Encoder-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Encoder-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/GPS-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/GPS-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/IR-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/IR-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/LED-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/LED-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Manager-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Manager-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/PHSensor-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/PHSensor-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/RFID-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/RFID-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Servo-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Servo-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Spatial-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Spatial-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Stepper-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/Stepper-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/TextLCD-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1024 - Temp Sensor - Code Samples/CSharp_2.1.8.20120503/CSharp/TextLCD-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1124 - Mechanical Drawings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1124 - Mechanical Drawings.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/1124 - Temperature Sensor - Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/1124 - Temperature Sensor - Manual.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/3560 - Magnetic Switch - Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/3560 - Magnetic Switch - Datasheet.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Linux Drivers/Requires Linux Kernal 2_6+.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Linux Drivers/phidget 21 source.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Linux Drivers/phidget 21 source.tar.gz -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Linux Drivers/phidget webservice.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Linux Drivers/phidget webservice.tar.gz -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/Addressing_EMI_Issues_Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/Addressing_EMI_Issues_Tutorial.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Borland C++ Lib File/phidget21bcc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Borland C++ Lib File/phidget21bcc.lib -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/Accelerometer-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/Accelerometer-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/AdvancedServo-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/AdvancedServo-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/Analog-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/Analog-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/Bridge-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/Bridge-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/Dictionary-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/Dictionary-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/Encoder-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/Encoder-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/FrequencyCounter-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/FrequencyCounter-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/GPS-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/GPS-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/IR-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/IR-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/InterfaceKit-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/InterfaceKit-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/LED-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/LED-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/Makefile.am -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/Makefile.in -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/Manager-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/Manager-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/MotorControl-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/MotorControl-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/PHSensor-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/PHSensor-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/README -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/RFID-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/RFID-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/Servo-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/Servo-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/Spatial-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/Spatial-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/Stepper-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/Stepper-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/TemperatureSensor-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/TemperatureSensor-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/TextLCD-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/TextLCD-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/aclocal.m4 -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/config.guess -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/config.h.in -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/config.sub -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/configure -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/configure.ac -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/depcomp -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/install-sh -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/C Examples/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/C Examples/missing -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/Accelerometer-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/Accelerometer-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/AdvancedServo-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/AdvancedServo-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/AllExamples/AllExamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/AllExamples/AllExamples.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/AllExamples/AllExamples_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/AllExamples/AllExamples_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/Analog-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/Analog-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-full/Analog-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-full/Analog-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-full/Analog-full/Analog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-full/Analog-full/Analog.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-full/Analog-full/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-full/Analog-full/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-full/Analog-full/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-full/Analog-full/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-full/Analog-full/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-full/Analog-full/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-full/Analog-full_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-full/Analog-full_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-simple/Analog-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/AnalogExamples/Analog-simple/Analog-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/Bridge-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/Bridge-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-full/Bridge-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-full/Bridge-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-full/Bridge-full/Bridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-full/Bridge-full/Bridge.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-full/Bridge-full/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-full/Bridge-full/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-full/Bridge-full/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-full/Bridge-full/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-full/Bridge-full/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-full/Bridge-full/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-full/Bridge-full_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-full/Bridge-full_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-simple/Bridge-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/BridgeExamples/Bridge-simple/Bridge-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/Encoder-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/Encoder-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-full/Encoder-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-full/Encoder-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-full/Encoder-full/1052_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-full/Encoder-full/1052_0.ico -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-full/Encoder-full/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-full/Encoder-full/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-full/Encoder-full/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-full/Encoder-full/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-full/Encoder-full/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-full/Encoder-full/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-full/Encoder-full_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-full/Encoder-full_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-simple/Encoder-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/EncoderExamples/Encoder-simple/Encoder-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/FrequencyCounter-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/FrequencyCounter-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPS-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPS-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/ErrorEventBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/ErrorEventBox.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/ErrorEventBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/ErrorEventBox.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/Form1.Designer.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/GMap.NET.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/GMap.NET.Core.dll -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/GPS-full.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/GPS-full.csproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/GPS-full_vs2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/GPS-full_vs2008.csproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/GPS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/GPS.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/System.Data.SQLite.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/System.Data.SQLite.DLL -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/TextInputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/TextInputBox.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/TextInputBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full/TextInputBox.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-full/GPS-full_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-simple/GPS-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-simple/GPS-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-simple/GPS-simple.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-simple/GPS-simple.suo -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-simple/GPS-simple/GPS-simple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-simple/GPS-simple/GPS-simple.csproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-simple/GPS-simple/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/GPSExamples/GPS-simple/GPS-simple/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/HelloWorld/HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/HelloWorld/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/HelloWorld/HelloWorld/HelloWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/HelloWorld/HelloWorld/HelloWorld.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/HelloWorld/HelloWorld/HelloWorld_vs2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/HelloWorld/HelloWorld/HelloWorld_vs2008.csproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/HelloWorld/HelloWorld/HelloWorld_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/HelloWorld/HelloWorld/HelloWorld_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/HelloWorld/HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/HelloWorld/HelloWorld/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/HelloWorld/HelloWorld/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/HelloWorld/HelloWorld/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IR-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IR-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/ErrorEventBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/ErrorEventBox.Designer.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/ErrorEventBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/ErrorEventBox.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/ErrorEventBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/ErrorEventBox.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/Form1.Designer.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/IR-full.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/IR-full.csproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/IR-full_vs2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/IR-full_vs2008.csproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/Properties/Resources.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/TextInputBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/TextInputBox.Designer.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/TextInputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/TextInputBox.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/TextInputBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full/TextInputBox.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-full/IR-full_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-simple/IR-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-simple/IR-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-simple/IR-simple/IR-simple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-simple/IR-simple/IR-simple.csproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-simple/IR-simple/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/IRExamples/IR-simple/IR-simple/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/InterfaceKit-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/InterfaceKit-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LED-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LED-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/1030_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/1030_0.ico -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/ErrorEventBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/ErrorEventBox.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/ErrorEventBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/ErrorEventBox.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/Form1.Designer.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/LED-full.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/LED-full.csproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/LED-full_vs2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/LED-full_vs2008.csproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/TextInputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/TextInputBox.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/TextInputBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full/TextInputBox.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-full/LED-full_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-simple/LED-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-simple/LED-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-simple/LED-simple/LED-simple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-simple/LED-simple/LED-simple.csproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-simple/LED-simple/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/LEDExamples/LED-simple/LED-simple/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/Manager-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/Manager-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ManagerExamples/Manager-full/Manager-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ManagerExamples/Manager-full/Manager-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ManagerExamples/Manager-full/Manager-full/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ManagerExamples/Manager-full/Manager-full/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ManagerExamples/Manager-full/Manager-full/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ManagerExamples/Manager-full/Manager-full/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ManagerExamples/Manager-full/Manager-full/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ManagerExamples/Manager-full/Manager-full/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ManagerExamples/Manager-full/Manager-full_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ManagerExamples/Manager-full/Manager-full_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ManagerExamples/Manager-simple/Manager-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ManagerExamples/Manager-simple/Manager-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/MotorControl-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/MotorControl-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/MultiTemperatureChart/MultiTemperatureChart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/MultiTemperatureChart/MultiTemperatureChart.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/MultiTemperatureChart/MultiTemperatureChart/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/MultiTemperatureChart/MultiTemperatureChart/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/PHSensor-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/PHSensor-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/PHSensorExamples/PHSensor-full/PHSensor-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/PHSensorExamples/PHSensor-full/PHSensor-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/PHSensorExamples/PHSensor-simple/PHSensor-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/PHSensorExamples/PHSensor-simple/PHSensor-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFID-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFID-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/1023_1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/1023_1.ico -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/ErrorEventBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/ErrorEventBox.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/ErrorEventBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/ErrorEventBox.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/Form1.Designer.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/RFID-full.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/RFID-full.csproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/TextInputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/TextInputBox.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/TextInputBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full/TextInputBox.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-full/RFID-full_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-simple/RFID-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-simple/RFID-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-simple/RFID-simple/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/RFIDExamples/RFID-simple/RFID-simple/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/Servo-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/Servo-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full/1000_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full/1000_0.ico -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full/ErrorEventBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full/ErrorEventBox.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full/TextInputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full/TextInputBox.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-full/Servo-full_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-simple/Servo-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-simple/Servo-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-simple/Servo-simple/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/ServoExamples/Servo-simple/Servo-simple/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/Spatial-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/Spatial-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-full/Spatial-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-full/Spatial-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-full/Spatial-full/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-full/Spatial-full/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-full/Spatial-full/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-full/Spatial-full/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-full/Spatial-full/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-full/Spatial-full/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-full/Spatial-full/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-full/Spatial-full/app.config -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-full/Spatial-full_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-full/Spatial-full_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-simple/Spatial-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-simple/Spatial-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-wireframe/Wireframe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-wireframe/Wireframe.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-wireframe/Wireframe/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/SpatialExamples/Spatial-wireframe/Wireframe/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/Stepper-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/Stepper-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-full/Stepper-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-full/Stepper-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-full/Stepper-full/1062_0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-full/Stepper-full/1062_0.ico -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-full/Stepper-full/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-full/Stepper-full/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-full/Stepper-full/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-full/Stepper-full/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-full/Stepper-full/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-full/Stepper-full/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-full/Stepper-full_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-full/Stepper-full_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-simple/Stepper-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/StepperExamples/Stepper-simple/Stepper-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureChart/TemperatureChart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureChart/TemperatureChart.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureChart/TemperatureChart/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureChart/TemperatureChart/Form1.Designer.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureChart/TemperatureChart/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureChart/TemperatureChart/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureChart/TemperatureChart/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureChart/TemperatureChart/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureChart/TemperatureChart/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureChart/TemperatureChart/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureChart/TemperatureChart/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureChart/TemperatureChart/ZedGraph.dll -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureSensor-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TemperatureSensor-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCD-full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCD-full.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-IFKit/TextLCD-IFKit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-IFKit/TextLCD-IFKit.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-IFKit/TextLCD-IFKit/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-IFKit/TextLCD-IFKit/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full/TextLCD-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full/TextLCD-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full/TextLCD-full/1202_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full/TextLCD-full/1202_2.ico -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full/TextLCD-full/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full/TextLCD-full/Form1.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full/TextLCD-full/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full/TextLCD-full/Form1.resx -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full/TextLCD-full/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full/TextLCD-full/Program.cs -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full/TextLCD-full_vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full/TextLCD-full_vs2008.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full_old/TextLCD-full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-full_old/TextLCD-full.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-simple/TextLCD-simple.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/CSharp Examples/TextLCDExamples/TextLCD-simple/TextLCD-simple.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Getting_Started_Standard_C-C++.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Getting_Started_Standard_C-C++.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Getting_Started_Visual_Studio_C-C++.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Getting_Started_Visual_Studio_C-C++.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc.zip -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/annotated.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/classes.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/closed.gif -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/doxygen.css -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/doxygen.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2blank.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2doc.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2folderclosed.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2folderopen.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2lastnode.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2link.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2mlastnode.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2mnode.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2node.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2plastnode.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2pnode.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/ftv2vertline.png -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/functions.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/functions_vars.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phid_i_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phid_i_r.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidaccel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidaccel.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidadvservo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidadvservo.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidanalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidanalog.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidbridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidbridge.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidcommon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidcommon.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidconst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidconst.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phiddict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phiddict.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidenc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidenc.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidfreq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidfreq.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidgets.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidgps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidgps.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidifkit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidifkit.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidled.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidlog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidlog.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidmanager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidmanager.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidmotorcontrol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidmotorcontrol.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidph.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidrfid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidrfid.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidservo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidservo.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidspatial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidspatial.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidstepper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidstepper.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidtemp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidtemp.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidtextlcd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidtextlcd.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidtextled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidtextled.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidweight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/group__phidweight.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/index.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/main.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/modules.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/open.gif -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct___c_phidget___timestamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct___c_phidget___timestamp.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct___c_phidget_i_r___code_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct___c_phidget_i_r___code_info.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct___c_phidget_spatial___spatial_event_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct___c_phidget_spatial___spatial_event_data.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_g_g_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_g_g_a.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_g_s_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_g_s_a.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_g_s_v.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_g_s_v.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_r_m_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_r_m_c.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_s_date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_s_date.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_s_sat_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_s_sat_info.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_s_time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_s_time.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_v_t_g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_g_p_v_t_g.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_n_m_e_a_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/struct_n_m_e_a_data.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/tab_b.gif -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/tab_l.gif -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/tab_r.gif -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/tabs.css -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Phidget21_C_Doc/tree.html -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Debug/TemperatureSensor-simple.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Debug/TemperatureSensor-simple.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/README.txt -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Release/InterfaceKit-simple.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Release/InterfaceKit-simple.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Release/TemperatureSensor-simple.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Release/TemperatureSensor-simple.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/UpgradeLog.XML -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Phidgets Examples.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Phidgets Examples.sdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Phidgets Examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Phidgets Examples.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Phidgets Examples.sln.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Phidgets Examples.sln.old -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Phidgets Examples.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Phidgets Examples.suo -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/GPS-simple/GPS-simple.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/GPS-simple/GPS-simple.vcproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/GPS-simple/GPS-simple.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/GPS-simple/GPS-simple.vcxproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/HelloWorld/HelloWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/HelloWorld/HelloWorld.sln -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/HelloWorld/HelloWorld.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/HelloWorld/HelloWorld.vcproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/HelloWorld/HelloWorld.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/HelloWorld/HelloWorld.vcxproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/IR-simple/IR-simple.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/IR-simple/IR-simple.vcproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/IR-simple/IR-simple.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/IR-simple/IR-simple.vcxproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/LED-simple/LED-simple.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/LED-simple/LED-simple.vcproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/LED-simple/LED-simple.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/LED-simple/LED-simple.vcxproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/RFID-simple/RFID-simple.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/Visual Studio Projects/RFID-simple/RFID-simple.vcproj -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/_UpgradeReport_Files/UpgradeReport.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/_UpgradeReport_Files/UpgradeReport.css -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/_UpgradeReport_Files/UpgradeReport.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/_UpgradeReport_Files/UpgradeReport.xslt -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/_UpgradeReport_Files/UpgradeReport_Minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/_UpgradeReport_Files/UpgradeReport_Minus.gif -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/_UpgradeReport_Files/UpgradeReport_Plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/_UpgradeReport_Files/UpgradeReport_Plus.gif -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/phidget21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/phidget21.h -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/phidget21.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/phidget21.lib -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Accelerometer-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Accelerometer-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/AdvancedServo-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/AdvancedServo-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Analog-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Analog-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Bridge-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Bridge-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Dictionary-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Dictionary-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Encoder-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Encoder-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/FrequencyCounter-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/FrequencyCounter-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/GPS-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/GPS-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/HelloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/HelloWorld.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/IR-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/IR-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/InterfaceKit-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/InterfaceKit-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/LED-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/LED-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Makefile.am -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Makefile.in -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Manager-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Manager-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/MotorControl-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/MotorControl-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/PHSensor-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/PHSensor-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/README -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/RFID-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/RFID-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Servo-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Servo-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Spatial-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Spatial-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Stepper-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/Stepper-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/TemperatureSensor-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/TemperatureSensor-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/TextLCD-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/TextLCD-simple.c -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/aclocal.m4 -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/config.guess -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/config.h.in -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/config.sub -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/configure -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/configure.ac -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/depcomp -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/install-sh -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/missing -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VC++ Examples/source/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VC++ Examples/source/version.sh -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/VCpp_2.1.8.20120503.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/VCpp_2.1.8.20120503.zip -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/Phidget21.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/Phidget21.NET.dll -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/Phidget21.NET1.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/Phidget21.NET1.1.dll -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/phidget21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/phidget21.h -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x64/Phidget21COM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x64/Phidget21COM.dll -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x64/PhidgetWebservice21.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x64/PhidgetWebservice21.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x64/phidget21.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x64/phidget21.dll -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x64/phidget21.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x64/phidget21.lib -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x86/Phidget21COM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x86/Phidget21COM.dll -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x86/PhidgetWebservice21.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x86/PhidgetWebservice21.exe -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x86/phidget21.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/Windows Header and Lib Files/x86/phidget21.dll -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/phidget21-c-examples_2.1.8.20120514.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/phidget21-c-examples_2.1.8.20120514.tar.gz -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/C/phidget21bcc_2.1.8.20120503.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/C/phidget21bcc_2.1.8.20120503.zip -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/Effects_Of_Long_Wires_Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/Effects_Of_Long_Wires_Tutorial.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/Known_Issues_and_Workarounds.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/Known_Issues_and_Workarounds.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/Library_Information.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/Library_Information.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/Programming_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/Programming_Manual.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/Python/Getting_Started_Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/Python/Getting_Started_Python.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/Python/PhidgetsPython_2.1.8.20120503.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/Python/PhidgetsPython_2.1.8.20120503.zip -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/Python/PythonDoc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/Python/PythonDoc.zip -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/Python/Python_2.1.8.20120503.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/Python/Python_2.1.8.20120503.zip -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Programming/Working_With_PhidgetWebservice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Programming/Working_With_PhidgetWebservice.pdf -------------------------------------------------------------------------------- /doc/vendor/Phidgets/Windows Drivers/Phidget-x86_2.1.8.20120503.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/Phidgets/Windows Drivers/Phidget-x86_2.1.8.20120503.exe -------------------------------------------------------------------------------- /doc/vendor/datasheets/24v Converter - Mouser 580-UWE-24-3-Q12P-C Data Sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/datasheets/24v Converter - Mouser 580-UWE-24-3-Q12P-C Data Sheet.pdf -------------------------------------------------------------------------------- /doc/vendor/datasheets/5v DC DC Converter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/datasheets/5v DC DC Converter.pdf -------------------------------------------------------------------------------- /doc/vendor/datasheets/AND Gate - sn74lvc1g08.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/datasheets/AND Gate - sn74lvc1g08.pdf -------------------------------------------------------------------------------- /doc/vendor/datasheets/Diode - 1N4148_1N4448.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/datasheets/Diode - 1N4148_1N4448.pdf -------------------------------------------------------------------------------- /doc/vendor/datasheets/Inverters - cd74hc14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/datasheets/Inverters - cd74hc14.pdf -------------------------------------------------------------------------------- /doc/vendor/datasheets/LED - 550-xx04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/datasheets/LED - 550-xx04.pdf -------------------------------------------------------------------------------- /doc/vendor/datasheets/Optoisolator - AV02-0773EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/datasheets/Optoisolator - AV02-0773EN.pdf -------------------------------------------------------------------------------- /doc/vendor/datasheets/PushButton - MS-100861.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/datasheets/PushButton - MS-100861.pdf -------------------------------------------------------------------------------- /doc/vendor/datasheets/Relay - SPDT - G5LA_E_0911.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/datasheets/Relay - SPDT - G5LA_E_0911.pdf -------------------------------------------------------------------------------- /doc/vendor/datasheets/Resistor - SEI-RNCP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/datasheets/Resistor - SEI-RNCP.pdf -------------------------------------------------------------------------------- /doc/vendor/datasheets/TVS Diodes - Littelfuse_TVS-Diode_LCE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/doc/vendor/datasheets/TVS Diodes - Littelfuse_TVS-Diode_LCE.pdf -------------------------------------------------------------------------------- /eagle/.gitignore: -------------------------------------------------------------------------------- 1 | *.lck 2 | -------------------------------------------------------------------------------- /eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_BOM_REVC.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_BOM_REVC.xls -------------------------------------------------------------------------------- /eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_CAD_REV_C.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_CAD_REV_C.zip -------------------------------------------------------------------------------- /eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_Gerber.zip -------------------------------------------------------------------------------- /eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_ODB.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_ODB.tgz -------------------------------------------------------------------------------- /eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_ORCAD_REV_C.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_ORCAD_REV_C.zip -------------------------------------------------------------------------------- /eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_SCHEMATIC_REV_C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_SCHEMATIC_REV_C.pdf -------------------------------------------------------------------------------- /eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_SRM_REV_C_1_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/BB-xM_REV_C-2011-05-23/BB-xM REV C/BEAGLE-xM_SRM_REV_C_1_0.pdf -------------------------------------------------------------------------------- /eagle/Ignition Board/Launch_Tower_Ignition_Board_v6-4.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Ignition Board/Launch_Tower_Ignition_Board_v6-4.brd -------------------------------------------------------------------------------- /eagle/Ignition Board/Launch_Tower_Ignition_Board_v6-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Ignition Board/Launch_Tower_Ignition_Board_v6-4.pdf -------------------------------------------------------------------------------- /eagle/Ignition Board/Launch_Tower_Ignition_Board_v6-4.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Ignition Board/Launch_Tower_Ignition_Board_v6-4.sch -------------------------------------------------------------------------------- /eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4-bot.gbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4-bot.gbx -------------------------------------------------------------------------------- /eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4-dim.gbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4-dim.gbx -------------------------------------------------------------------------------- /eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4-msk-bot.gbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4-msk-bot.gbx -------------------------------------------------------------------------------- /eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4-msk-top.gbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4-msk-top.gbx -------------------------------------------------------------------------------- /eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4-top-slk.gbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4-top-slk.gbx -------------------------------------------------------------------------------- /eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4-top.gbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4-top.gbx -------------------------------------------------------------------------------- /eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4.xln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Ignition Board/cam/Launch_Tower_Ignition_Board_v6-4.xln -------------------------------------------------------------------------------- /eagle/LTC Connector Interface.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/LTC Connector Interface.brd -------------------------------------------------------------------------------- /eagle/LTC Connector Interface.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/LTC Connector Interface.sch -------------------------------------------------------------------------------- /eagle/LTC Whole System Schematic.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/LTC Whole System Schematic.sch -------------------------------------------------------------------------------- /eagle/LTC2 Top-level Schematic.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/LTC2 Top-level Schematic.sch -------------------------------------------------------------------------------- /eagle/Library/launch-tower.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Library/launch-tower.lbr -------------------------------------------------------------------------------- /eagle/Phidgets - CAD Files/1014_2.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Phidgets - CAD Files/1014_2.step -------------------------------------------------------------------------------- /eagle/Phidgets - CAD Files/1019_1.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Phidgets - CAD Files/1019_1.step -------------------------------------------------------------------------------- /eagle/Phidgets - CAD Files/1124_0.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Phidgets - CAD Files/1124_0.step -------------------------------------------------------------------------------- /eagle/Power Interface Board/Launch_Tower_Power_Interface_Board_v1-4.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Power Interface Board/Launch_Tower_Power_Interface_Board_v1-4.brd -------------------------------------------------------------------------------- /eagle/Power Interface Board/Launch_Tower_Power_Interface_Board_v1-4.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Power Interface Board/Launch_Tower_Power_Interface_Board_v1-4.sch -------------------------------------------------------------------------------- /eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4-bot.gbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4-bot.gbx -------------------------------------------------------------------------------- /eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4-dim.gbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4-dim.gbx -------------------------------------------------------------------------------- /eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4-msk-bot.gbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4-msk-bot.gbx -------------------------------------------------------------------------------- /eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4-msk-top.gbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4-msk-top.gbx -------------------------------------------------------------------------------- /eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4-top-slk.gbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4-top-slk.gbx -------------------------------------------------------------------------------- /eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4-top.gbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4-top.gbx -------------------------------------------------------------------------------- /eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4.xln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Power Interface Board/cam/Launch_Tower_Power_Interface_Board_v1-4.xln -------------------------------------------------------------------------------- /eagle/Safety Schematic/PSAS_Safety_System.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/Safety Schematic/PSAS_Safety_System.sch -------------------------------------------------------------------------------- /eagle/launch-tower.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/eagle/launch-tower.lbr -------------------------------------------------------------------------------- /laser_cut_drawings/Arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Arrow.svg -------------------------------------------------------------------------------- /laser_cut_drawings/LCT Boards - Design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/LCT Boards - Design.svg -------------------------------------------------------------------------------- /laser_cut_drawings/LCT Boards - Laser Cutter Ready.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/LCT Boards - Laser Cutter Ready.svg -------------------------------------------------------------------------------- /laser_cut_drawings/LTC-Interior-Long Side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/LTC-Interior-Long Side.svg -------------------------------------------------------------------------------- /laser_cut_drawings/LTC-Interior-Power Conenctor - v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/LTC-Interior-Power Conenctor - v2.svg -------------------------------------------------------------------------------- /laser_cut_drawings/LTC-Interior-Power Conenctor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/LTC-Interior-Power Conenctor.svg -------------------------------------------------------------------------------- /laser_cut_drawings/LTC-Interior-Short Side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/LTC-Interior-Short Side.svg -------------------------------------------------------------------------------- /laser_cut_drawings/LTC-Interior-Switch Holder - v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/LTC-Interior-Switch Holder - v2.svg -------------------------------------------------------------------------------- /laser_cut_drawings/LTC-Interior-Switch Holder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/LTC-Interior-Switch Holder.svg -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/covertops.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/covertops.ttf -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/covertops3d.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/covertops3d.ttf -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/covertops3dital.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/covertops3dital.ttf -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/covertopscond.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/covertopscond.ttf -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/covertopscondital.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/covertopscondital.ttf -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/covertopsexpand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/covertopsexpand.ttf -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/covertopsexpandital.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/covertopsexpandital.ttf -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/covertopsital.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/covertopsital.ttf -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/covertopsleft.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/covertopsleft.ttf -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/covertopsout.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/covertopsout.ttf -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/covertopsoutital.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/covertopsoutital.ttf -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/gunplay 3d.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/gunplay 3d.ttf -------------------------------------------------------------------------------- /laser_cut_drawings/Machinable Fonts/gunplay rg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/laser_cut_drawings/Machinable Fonts/gunplay rg.ttf -------------------------------------------------------------------------------- /ltc3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/README.md -------------------------------------------------------------------------------- /ltc3/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/TODO.md -------------------------------------------------------------------------------- /ltc3/bom/cell_protection/LTC3_Cell_Protection.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/bom/cell_protection/LTC3_Cell_Protection.xlsx -------------------------------------------------------------------------------- /ltc3/bom/charge_controller/LTC3_Charge_Controller.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/bom/charge_controller/LTC3_Charge_Controller.xlsx -------------------------------------------------------------------------------- /ltc3/bom/ltc/LTC3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/bom/ltc/LTC3.xlsx -------------------------------------------------------------------------------- /ltc3/build/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/README.mkd -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-B.Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-B.Cu.gbl -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-B.Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-B.Mask.gbs -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-B.Paste.gbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-B.Paste.gbp -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-B.SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-B.SilkS.gbo -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-Edge.Cuts.gm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-Edge.Cuts.gm1 -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-F.Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-F.Cu.gtl -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-F.Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-F.Mask.gts -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-F.Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-F.Paste.gtp -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-F.SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-F.SilkS.gto -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-In1.Ground.Cu.g2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-In1.Ground.Cu.g2 -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-In2.Cu.g3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-In2.Cu.g3 -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection-NPTH.drl -------------------------------------------------------------------------------- /ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/cell_protection/LTC3_Cell_Protection.drl -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-B.Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-B.Cu.gbl -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-B.Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-B.Mask.gbs -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-B.Paste.gbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-B.Paste.gbp -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-B.SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-B.SilkS.gbo -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-Edge.Cuts.gm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-Edge.Cuts.gm1 -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-F.Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-F.Cu.gtl -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-F.Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-F.Mask.gts -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-F.Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-F.Paste.gtp -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-F.SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-F.SilkS.gto -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-In1.Ground.Cu.g2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-In1.Ground.Cu.g2 -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-In2.Cu.g3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-In2.Cu.g3 -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller-NPTH.drl -------------------------------------------------------------------------------- /ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/charge_controller/LTC3_Charge_Controller.drl -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3-B.Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3-B.Cu.gbl -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3-B.Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3-B.Mask.gbs -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3-B.Paste.gbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3-B.Paste.gbp -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3-B.SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3-B.SilkS.gbo -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3-Edge.Cuts.gm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3-Edge.Cuts.gm1 -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3-F.Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3-F.Cu.gtl -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3-F.Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3-F.Mask.gts -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3-F.Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3-F.Paste.gtp -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3-F.SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3-F.SilkS.gto -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3-In1.Ground.Cu.g2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3-In1.Ground.Cu.g2 -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3-In2.Power.Cu.g3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3-In2.Power.Cu.g3 -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3-NPTH.drl -------------------------------------------------------------------------------- /ltc3/build/gerbers/ltc/LTC3.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/gerbers/ltc/LTC3.drl -------------------------------------------------------------------------------- /ltc3/build/schematics/1-Charge_Controller.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/schematics/1-Charge_Controller.pdf -------------------------------------------------------------------------------- /ltc3/build/schematics/2-Cell_Protection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/schematics/2-Cell_Protection.pdf -------------------------------------------------------------------------------- /ltc3/build/schematics/3-Launch_Tower_Computer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/schematics/3-Launch_Tower_Computer.pdf -------------------------------------------------------------------------------- /ltc3/build/schematics/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/build/schematics/README.mkd -------------------------------------------------------------------------------- /ltc3/doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/.gitignore -------------------------------------------------------------------------------- /ltc3/doc/WTF.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/WTF.adoc -------------------------------------------------------------------------------- /ltc3/doc/datasheets/BeagleBone_Black/BeagleBone_Black_System_Reference_Manual-rev_C1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/BeagleBone_Black/BeagleBone_Black_System_Reference_Manual-rev_C1.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/BeagleBone_Black/BeagleBone_Black_expansion_headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/BeagleBone_Black/BeagleBone_Black_expansion_headers.png -------------------------------------------------------------------------------- /ltc3/doc/datasheets/BeagleBone_Black/BeagleBone_Black_schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/BeagleBone_Black/BeagleBone_Black_schematic.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/LTC299x/Linear-LTC2990-Quad_I2C_Voltage_Current_and_Temp_Monitor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/LTC299x/Linear-LTC2990-Quad_I2C_Voltage_Current_and_Temp_Monitor.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/LTC299x/Linear-LTC2991-Octal_I2C_Voltage_Current_and_Temp_Monitor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/LTC299x/Linear-LTC2991-Octal_I2C_Voltage_Current_and_Temp_Monitor.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/ON_Semi-CAT24C256-256_kb_I2C_CMOS_Serial_EEPROM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/ON_Semi-CAT24C256-256_kb_I2C_CMOS_Serial_EEPROM.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/Omron-G5LE-Single_Pole_10A_Power_Relay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/Omron-G5LE-Single_Pole_10A_Power_Relay.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/Panasonic-EVQQ2-6mm_Square_Thin_SMD_Touch_Switches.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/Panasonic-EVQQ2-6mm_Square_Thin_SMD_Touch_Switches.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/README.md -------------------------------------------------------------------------------- /ltc3/doc/datasheets/TE-W28_Series-Push_To_Reset_Fuseholder_Type_Thermal_Circuit_Breaker.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/TE-W28_Series-Push_To_Reset_Fuseholder_Type_Thermal_Circuit_Breaker.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/TI-PTN78020-6A_Wide_Input_Adjustable_Switching_Regulator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/TI-PTN78020-6A_Wide_Input_Adjustable_Switching_Regulator.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/bq77PL900/TI-Cell_Balancing_With_The_bq77PL900.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/bq77PL900/TI-Cell_Balancing_With_The_bq77PL900.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/bq77PL900/TI-bq77PL900-evaluation_board_users_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/bq77PL900/TI-bq77PL900-evaluation_board_users_guide.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/connectors/Anderson-PowerPole_housing-drawing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/connectors/Anderson-PowerPole_housing-drawing.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/connectors/Anderson-Powerpole_Connectors_PP15_to_PP45.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/connectors/Anderson-Powerpole_Connectors_PP15_to_PP45.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/connectors/JST-XH-2.5mm_pitch_Disconnectable_Crimp_style_connectors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/connectors/JST-XH-2.5mm_pitch_Disconnectable_Crimp_style_connectors.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/connectors/Molex-43045-Micro_Fit_3_dual_row_vertical_through_hole_header.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/connectors/Molex-43045-Micro_Fit_3_dual_row_vertical_through_hole_header.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/connectors/Molex-Micro_Fit_3_Family.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/connectors/Molex-Micro_Fit_3_Family.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/connectors/Molex-Micro_Fit_3_Product_Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/connectors/Molex-Micro_Fit_3_Product_Specification.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/connectors/Stewart-SS7188S-RJ45_Shielded_Jack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/connectors/Stewart-SS7188S-RJ45_Shielded_Jack.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/fuses/Keystone-3557_2-automotive_fuse_holder_vertical.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/fuses/Keystone-3557_2-automotive_fuse_holder_vertical.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/fuses/Littelfuse_ATOF_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/fuses/Littelfuse_ATOF_Datasheet.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/indicators/Dialight-557_Series-High_Intensity_LED_Panel_Mount_Indicators.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/indicators/Dialight-557_Series-High_Intensity_LED_Panel_Mount_Indicators.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/indicators/Dialight-557_Series-mechanical_drawing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/indicators/Dialight-557_Series-mechanical_drawing.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/indicators/Lite_On-LTST_C150CKT-LED_Red_1206.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/indicators/Lite_On-LTST_C150CKT-LED_Red_1206.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/indicators/Lite_On-LTST_C150GKT-LED_Green_1206.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/indicators/Lite_On-LTST_C150GKT-LED_Green_1206.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/logic/TI-CD74HC14-High_Speed_CMOS_Logic_Hex_Inverting_Schmitt_Trigger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/logic/TI-CD74HC14-High_Speed_CMOS_Logic_Hex_Inverting_Schmitt_Trigger.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/logic/TI-SN74AHC1G08-Single_Two_Input_Positive_AND_Gate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/logic/TI-SN74AHC1G08-Single_Two_Input_Positive_AND_Gate.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/passives/Coilcraft-SER2900-Shielded_Power_Inductors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/passives/Coilcraft-SER2900-Shielded_Power_Inductors.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/passives/Semitec-AT_Thermistor-High_Precision_Thermistor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/passives/Semitec-AT_Thermistor-High_Precision_Thermistor.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/Central_Semi-CMMR1U_Series-Ultra_Fast_SMT_Rectifier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/Central_Semi-CMMR1U_Series-Ultra_Fast_SMT_Rectifier.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/ComChip-CDSU4148-SMD_Switching_Diode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/ComChip-CDSU4148-SMD_Switching_Diode.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/Diodes_Inc-BZT52C13-Surface_Mount_Zener_Diode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/Diodes_Inc-BZT52C13-Surface_Mount_Zener_Diode.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/Diodes_Inc-SMAZnn-1W_Surface_Mount_Zener_Diode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/Diodes_Inc-SMAZnn-1W_Surface_Mount_Zener_Diode.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/Diodes_Inc-ZVN4525E6-250V_N_Channel_Enhancement_Mode_MOSFET.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/Diodes_Inc-ZVN4525E6-250V_N_Channel_Enhancement_Mode_MOSFET.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/Fairchild-2N3904-NPN_General_Purpose_Amplifier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/Fairchild-2N3904-NPN_General_Purpose_Amplifier.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/Fairchild-BSS138-N_Channel_Logic_Level_Enhancement_Mode_FET.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/Fairchild-BSS138-N_Channel_Logic_Level_Enhancement_Mode_FET.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/Fairchild-NDS9407-60V_PChannel_PowerTrench_MOSFET.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/Fairchild-NDS9407-60V_PChannel_PowerTrench_MOSFET.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/Infineon-BSC028N06NS-OptiMOS_Power_Transistor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/Infineon-BSC028N06NS-OptiMOS_Power_Transistor.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/Infineon-PG_TDSON_8_Package_Overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/Infineon-PG_TDSON_8_Package_Overview.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/Lite_On-4N25-Optocoupler.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/Lite_On-4N25-Optocoupler.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/NXP-PMV45EN-N_Channel_TrenchMOS_logic_level_FET.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/NXP-PMV45EN-N_Channel_TrenchMOS_logic_level_FET.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/ON_Semi-MM3ZxxxT1G_Series-Zener_Voltage_Regulators.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/ON_Semi-MM3ZxxxT1G_Series-Zener_Voltage_Regulators.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/ON_Semi-MMBT5550LT1G-High_Voltage_NPN_BJT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/ON_Semi-MMBT5550LT1G-High_Voltage_NPN_BJT.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/TI-SNx52x0-USB_Port_Transient_Suppressors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/TI-SNx52x0-USB_Port_Transient_Suppressors.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/Toshiba-TLP3542-Photo_Relay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/Toshiba-TLP3542-Photo_Relay.pdf -------------------------------------------------------------------------------- /ltc3/doc/datasheets/semiconductors/Vishay-SUM110P08_11L-P_Channel_80V_MOSFET.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/datasheets/semiconductors/Vishay-SUM110P08_11L-P_Channel_80V_MOSFET.pdf -------------------------------------------------------------------------------- /ltc3/doc/design/BQ77PL900_configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/design/BQ77PL900_configuration.adoc -------------------------------------------------------------------------------- /ltc3/doc/design/Charge_Controller_Component_Values_Review.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/design/Charge_Controller_Component_Values_Review.pdf -------------------------------------------------------------------------------- /ltc3/doc/design/LTC3_Design_Spec.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/design/LTC3_Design_Spec.adoc -------------------------------------------------------------------------------- /ltc3/doc/design/LTC3_Power_Configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/design/LTC3_Power_Configuration.adoc -------------------------------------------------------------------------------- /ltc3/doc/design/battery_charging_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/design/battery_charging_notes.txt -------------------------------------------------------------------------------- /ltc3/doc/design/images/LTC_PV_panel_specs_decal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/design/images/LTC_PV_panel_specs_decal.jpg -------------------------------------------------------------------------------- /ltc3/doc/ltc2_review/LTC2_Connector_Interface_Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/ltc2_review/LTC2_Connector_Interface_Schematic.png -------------------------------------------------------------------------------- /ltc3/doc/ltc2_review/LTC2_Ignition_Board_Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/ltc2_review/LTC2_Ignition_Board_Schematic.png -------------------------------------------------------------------------------- /ltc3/doc/ltc2_review/LTC2_Power_Board_Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/ltc2_review/LTC2_Power_Board_Schematic.png -------------------------------------------------------------------------------- /ltc3/doc/ltc2_review/LTC2_Safety_Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/ltc2_review/LTC2_Safety_Schematic.png -------------------------------------------------------------------------------- /ltc3/doc/ltc2_review/LTC2_Whole_System_Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/ltc2_review/LTC2_Whole_System_Schematic.png -------------------------------------------------------------------------------- /ltc3/doc/requirements/LTC3_Requirements_Spec.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/requirements/LTC3_Requirements_Spec.adoc -------------------------------------------------------------------------------- /ltc3/doc/requirements/images/LTC_I.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/requirements/images/LTC_I.jpeg -------------------------------------------------------------------------------- /ltc3/doc/requirements/images/LTC_II.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/requirements/images/LTC_II.jpeg -------------------------------------------------------------------------------- /ltc3/doc/requirements/images/LTC_II_Bulkhead_Door.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/requirements/images/LTC_II_Bulkhead_Door.jpeg -------------------------------------------------------------------------------- /ltc3/doc/requirements/images/LTC_II_LiPo_Ignition_Battery_Pack.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/requirements/images/LTC_II_LiPo_Ignition_Battery_Pack.jpeg -------------------------------------------------------------------------------- /ltc3/doc/requirements/images/LTC_II_Phidget_Interface_Board.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/requirements/images/LTC_II_Phidget_Interface_Board.jpeg -------------------------------------------------------------------------------- /ltc3/doc/requirements/images/LTC_II_Power_Board.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/requirements/images/LTC_II_Power_Board.jpeg -------------------------------------------------------------------------------- /ltc3/doc/requirements/images/LTC_II_Power_Connectors.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/requirements/images/LTC_II_Power_Connectors.jpeg -------------------------------------------------------------------------------- /ltc3/doc/service/LTC3_Service_Manual.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/service/LTC3_Service_Manual.adoc -------------------------------------------------------------------------------- /ltc3/doc/third_party/BBB_Linux_I2C_Bus_Naming.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/third_party/BBB_Linux_I2C_Bus_Naming.pdf -------------------------------------------------------------------------------- /ltc3/doc/third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/third_party/README.md -------------------------------------------------------------------------------- /ltc3/doc/third_party/datko-BeagleBone_Black_I2C_References.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/third_party/datko-BeagleBone_Black_I2C_References.pdf -------------------------------------------------------------------------------- /ltc3/doc/user/LTC3_User_Manual.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/doc/user/LTC3_User_Manual.adoc -------------------------------------------------------------------------------- /ltc3/kicad/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/.gitignore -------------------------------------------------------------------------------- /ltc3/kicad/cell_protection/LTC3_Cell_Protection-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/cell_protection/LTC3_Cell_Protection-cache.lib -------------------------------------------------------------------------------- /ltc3/kicad/cell_protection/LTC3_Cell_Protection.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/cell_protection/LTC3_Cell_Protection.kicad_pcb -------------------------------------------------------------------------------- /ltc3/kicad/cell_protection/LTC3_Cell_Protection.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/cell_protection/LTC3_Cell_Protection.net -------------------------------------------------------------------------------- /ltc3/kicad/cell_protection/LTC3_Cell_Protection.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/cell_protection/LTC3_Cell_Protection.pro -------------------------------------------------------------------------------- /ltc3/kicad/cell_protection/LTC3_Cell_Protection.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/cell_protection/LTC3_Cell_Protection.sch -------------------------------------------------------------------------------- /ltc3/kicad/cell_protection/fp-lib-table: -------------------------------------------------------------------------------- 1 | ../fp-lib-table -------------------------------------------------------------------------------- /ltc3/kicad/cell_protection/sym-lib-table: -------------------------------------------------------------------------------- 1 | ../sym-lib-table -------------------------------------------------------------------------------- /ltc3/kicad/charge_controller/LTC3_Charge_Controller-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/charge_controller/LTC3_Charge_Controller-cache.lib -------------------------------------------------------------------------------- /ltc3/kicad/charge_controller/LTC3_Charge_Controller.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/charge_controller/LTC3_Charge_Controller.kicad_pcb -------------------------------------------------------------------------------- /ltc3/kicad/charge_controller/LTC3_Charge_Controller.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/charge_controller/LTC3_Charge_Controller.net -------------------------------------------------------------------------------- /ltc3/kicad/charge_controller/LTC3_Charge_Controller.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/charge_controller/LTC3_Charge_Controller.pro -------------------------------------------------------------------------------- /ltc3/kicad/charge_controller/LTC3_Charge_Controller.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/charge_controller/LTC3_Charge_Controller.sch -------------------------------------------------------------------------------- /ltc3/kicad/charge_controller/fp-lib-table: -------------------------------------------------------------------------------- 1 | ../fp-lib-table -------------------------------------------------------------------------------- /ltc3/kicad/charge_controller/sym-lib-table: -------------------------------------------------------------------------------- 1 | ../sym-lib-table -------------------------------------------------------------------------------- /ltc3/kicad/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/fp-lib-table -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/BQ77PL900.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/BQ77PL900.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/BeagleBone_Outline.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/BeagleBone_Outline.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/Coilcraft_SER2900.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/Coilcraft_SER2900.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/Fuseholder_Auto_Blade_Regular_Keystone_3557-2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/Fuseholder_Auto_Blade_Regular_Keystone_3557-2.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/G5LE-14.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/G5LE-14.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/LGA-17.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/LGA-17.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/LT8490.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/LT8490.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/MSOP-10.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/MSOP-10.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/MSOP-16.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/MSOP-16.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/MountingHole_0.1120in_number4.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/MountingHole_0.1120in_number4.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/PG-TDSON-8.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/PG-TDSON-8.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/PSOP-6.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/PSOP-6.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/PTN78020W.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/PTN78020W.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/RJ45_8_SHIELDED.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/RJ45_8_SHIELDED.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/S2BPHKS.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/S2BPHKS.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/SOT-26.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/SOT-26.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/footprints.pretty/Via_.6mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/footprints.pretty/Via_.6mm.kicad_mod -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/4n35.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/4n35.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/4n35.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/4n35.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/741g08.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | $CMP 741G08 4 | D Single 2-Input AND Gate 5 | K TTL and2 6 | $ENDCMP 7 | # 8 | #End Doc Library 9 | -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/741g08.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/741g08.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/BeagleBone_Black.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/BeagleBone_Black.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/BeagleBone_Black.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/BeagleBone_Black.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/CD74HC14.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/CD74HC14.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/CD74HC14.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/CD74HC14.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/EEPROMs.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/EEPROMs.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/EEPROMs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/EEPROMs.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/LT8490.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/LT8490.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/LT8490.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/LT8490.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/LTC299x.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/LTC299x.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/LTC299x.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/LTC299x.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/MOSFET_SO8.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/MOSFET_SO8.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/MOSFET_SO8.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/MOSFET_SO8.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/MOSFET_SOT26.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/MOSFET_SOT26.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/MOSFET_SOT26.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/MOSFET_SOT26.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/PI2127.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/PI2127.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/PI2127.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/PI2127.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/PMV45EN.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/PMV45EN.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/PMV45EN.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/PMV45EN.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/PTN78020n.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/PTN78020n.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/PTN78020n.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/PTN78020n.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/SNx52x0.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/SNx52x0.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/SNx52x0.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/SNx52x0.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/SUM110P08-11.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/SUM110P08-11.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/SUM110P08-11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/SUM110P08-11.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/TLP.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/TLP.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/TLP.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/TLP.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/battery_single_cell.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/battery_single_cell.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/battery_single_cell.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/battery_single_cell.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/bq77PL900.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/bq77PL900.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/bq77PL900.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/bq77PL900.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/breakers.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/breakers.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/breakers.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/breakers.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/power_nodes.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/power_nodes.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/power_nodes.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/power_nodes.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/relay_1c.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/relay_1c.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/relay_1c.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/relay_1c.lib -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/switches2.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/switches2.dcm -------------------------------------------------------------------------------- /ltc3/kicad/libs/symbols/switches2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/libs/symbols/switches2.lib -------------------------------------------------------------------------------- /ltc3/kicad/ltc/LTC3-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/ltc/LTC3-cache.lib -------------------------------------------------------------------------------- /ltc3/kicad/ltc/LTC3.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/ltc/LTC3.kicad_pcb -------------------------------------------------------------------------------- /ltc3/kicad/ltc/LTC3.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/ltc/LTC3.net -------------------------------------------------------------------------------- /ltc3/kicad/ltc/LTC3.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/ltc/LTC3.pro -------------------------------------------------------------------------------- /ltc3/kicad/ltc/LTC3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/ltc/LTC3.sch -------------------------------------------------------------------------------- /ltc3/kicad/ltc/beaglebone_cape.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/ltc/beaglebone_cape.sch -------------------------------------------------------------------------------- /ltc3/kicad/ltc/dcdc_converter.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/ltc/dcdc_converter.sch -------------------------------------------------------------------------------- /ltc3/kicad/ltc/external_power.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/ltc/external_power.sch -------------------------------------------------------------------------------- /ltc3/kicad/ltc/external_triggers.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/ltc/external_triggers.sch -------------------------------------------------------------------------------- /ltc3/kicad/ltc/fp-lib-table: -------------------------------------------------------------------------------- 1 | ../fp-lib-table -------------------------------------------------------------------------------- /ltc3/kicad/ltc/rocket_interface.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/ltc/rocket_interface.sch -------------------------------------------------------------------------------- /ltc3/kicad/ltc/sym-lib-table: -------------------------------------------------------------------------------- 1 | ../sym-lib-table -------------------------------------------------------------------------------- /ltc3/kicad/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/kicad/sym-lib-table -------------------------------------------------------------------------------- /ltc3/misc/Charging_Circuit_Component_Value_Finder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/misc/Charging_Circuit_Component_Value_Finder.m -------------------------------------------------------------------------------- /ltc3/misc/KiCad_v4_to_V5_Conversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/misc/KiCad_v4_to_V5_Conversion/README.md -------------------------------------------------------------------------------- /ltc3/misc/KiCad_v4_to_V5_Conversion/eeschema_v4_to_v5.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/misc/KiCad_v4_to_V5_Conversion/eeschema_v4_to_v5.sed -------------------------------------------------------------------------------- /ltc3/misc/KiCad_v4_to_V5_Conversion/eeschema_v4_to_v5_base.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/misc/KiCad_v4_to_V5_Conversion/eeschema_v4_to_v5_base.sed -------------------------------------------------------------------------------- /ltc3/misc/KiCad_v4_to_V5_Conversion/make_sed_rules_for_local_symbols.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/misc/KiCad_v4_to_V5_Conversion/make_sed_rules_for_local_symbols.sed -------------------------------------------------------------------------------- /ltc3/temp/Enclosures/LCom-Vented_Weatherproof_Industrial_Enclosure_with_Mounting_Plate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/temp/Enclosures/LCom-Vented_Weatherproof_Industrial_Enclosure_with_Mounting_Plate.pdf -------------------------------------------------------------------------------- /ltc3/temp/Enclosures/LCom-Weatherproof_Enclosure_with_Mounting_Plate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/temp/Enclosures/LCom-Weatherproof_Enclosure_with_Mounting_Plate.pdf -------------------------------------------------------------------------------- /ltc3/temp/Enclosures/other_suppliers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/temp/Enclosures/other_suppliers.txt -------------------------------------------------------------------------------- /ltc3/temp/LTC2990.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/temp/LTC2990.md -------------------------------------------------------------------------------- /ltc3/temp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/temp/README.md -------------------------------------------------------------------------------- /ltc3/temp/Weatherproof_Ethernet_Connectors/Conec-IP67_RJ45_Inline_Coupler.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/temp/Weatherproof_Ethernet_Connectors/Conec-IP67_RJ45_Inline_Coupler.pdf -------------------------------------------------------------------------------- /ltc3/temp/Weatherproof_Ethernet_Connectors/VPI-Cable_Side_Cable_Shield-drawing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/temp/Weatherproof_Ethernet_Connectors/VPI-Cable_Side_Cable_Shield-drawing.pdf -------------------------------------------------------------------------------- /ltc3/temp/Weatherproof_Ethernet_Connectors/VPI-Cable_Side_RJ45_Cap-drawing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/temp/Weatherproof_Ethernet_Connectors/VPI-Cable_Side_RJ45_Cap-drawing.pdf -------------------------------------------------------------------------------- /ltc3/temp/Weatherproof_Ethernet_Connectors/VPI-Case_Side_RJ45_Connector_w_Jack-drawing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/temp/Weatherproof_Ethernet_Connectors/VPI-Case_Side_RJ45_Connector_w_Jack-drawing.pdf -------------------------------------------------------------------------------- /ltc3/temp/Weatherproof_Ethernet_Connectors/VPI-Waterproof_RJ45_Connectors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/ltc3/temp/Weatherproof_Ethernet_Connectors/VPI-Waterproof_RJ45_Connectors.pdf -------------------------------------------------------------------------------- /os/rootfs/etc/init.d/phidgetwebservice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/os/rootfs/etc/init.d/phidgetwebservice -------------------------------------------------------------------------------- /os/rootfs/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psas/launch-tower/HEAD/os/rootfs/etc/network/interfaces --------------------------------------------------------------------------------