-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from WildernessLabs/jorge-updates
Project Updates
- Loading branch information
Showing
168 changed files
with
3,754 additions
and
523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
.../ProjectLab_AzureIoTHub/MainController.cs → ...AzureIoTHub/Controllers/MainController.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
...e/GnssTracker/Connectivity/GnssTrackerConnectivity.Common/Bluetooth/BluetoothConstants.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace GnssTrackerConnectivity.Common.Bluetooth; | ||
|
||
public static class CharacteristicsConstants | ||
{ | ||
public const string LED_PAIRING = "19933423-6f14-41c0-bb03-637b2e6ef6b0"; | ||
public const string LED_TOGGLE = "2eb9edce-d7c4-4079-b3d3-5becfcf0c49d"; | ||
public const string LED_BLINK = "7cb9817d-6754-46e7-be72-d5790eaf678b"; | ||
public const string LED_PULSE = "23d3bd90-5966-4eff-9ac7-b6cafe9c182a"; | ||
public const string ATMOSPHERIC_DATA = "8787e846-51e5-4d9b-87aa-eaf4a8f0056f"; | ||
public const string MOTION_DATA = "29171115-4bbe-4ac1-a0b0-257b54bcc464"; | ||
public const string VOLTAGE_DATA = "8468a412-99ae-457c-b2fd-2085ab9aac37"; | ||
} |
14 changes: 14 additions & 0 deletions
14
...ce/GnssTracker/Connectivity/GnssTrackerConnectivity.Common/DTOs/AtmosphericReadingsDTO.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace GnssTrackerConnectivity.Common.Models; | ||
|
||
public class AtmosphericReadingsDTO | ||
{ | ||
public string? Temperature { get; set; } | ||
|
||
public string? Pressure { get; set; } | ||
|
||
public string? Humidity { get; set; } | ||
|
||
public string? GasResistance { get; set; } | ||
|
||
public string? Co2Concentration { get; set; } | ||
} |
12 changes: 12 additions & 0 deletions
12
Source/GnssTracker/Connectivity/GnssTrackerConnectivity.Common/DTOs/MotionReadingsDTO.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace GnssTrackerConnectivity.Common.Models; | ||
|
||
public class MotionReadingsDTO | ||
{ | ||
public string Acceleration3dX { get; set; } | ||
public string Acceleration3dY { get; set; } | ||
public string Acceleration3dZ { get; set; } | ||
|
||
public string AngularVelocity3dX { get; set; } | ||
public string AngularVelocity3dY { get; set; } | ||
public string AngularVelocity3dZ { get; set; } | ||
} |
8 changes: 8 additions & 0 deletions
8
Source/GnssTracker/Connectivity/GnssTrackerConnectivity.Common/DTOs/VoltageReadingsDTO.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace GnssTrackerConnectivity.Common.Models; | ||
|
||
public class VoltageReadingsDTO | ||
{ | ||
public string? BatteryVoltage { get; set; } | ||
|
||
public string? SolarVoltage { get; set; } | ||
} |
21 changes: 21 additions & 0 deletions
21
...cker/Connectivity/GnssTrackerConnectivity.Common/GnssTrackerConnectivity.Common.projitems
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<MSBuildAllProjects Condition="'$(MSBuildVersion)' == '' Or '$(MSBuildVersion)' < '16.0'">$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> | ||
<HasSharedItems>true</HasSharedItems> | ||
<SharedGUID>b37359b9-3d61-42bd-b485-fc76275f0585</SharedGUID> | ||
</PropertyGroup> | ||
<PropertyGroup Label="Configuration"> | ||
<Import_RootNamespace>GnssTrackerConnectivity.Common</Import_RootNamespace> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Folder Include="$(MSBuildThisFileDirectory)Bluetooth\" /> | ||
<Folder Include="$(MSBuildThisFileDirectory)DTOs\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="$(MSBuildThisFileDirectory)bluetooth\BluetoothConstants.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)DTOs\AtmosphericReadingsDTO.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)DTOs\MotionReadingsDTO.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)dtos\VoltageReadingsDTO.cs" /> | ||
</ItemGroup> | ||
</Project> |
13 changes: 13 additions & 0 deletions
13
...Tracker/Connectivity/GnssTrackerConnectivity.Common/GnssTrackerConnectivity.Common.shproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>b37359b9-3d61-42bd-b485-fc76275f0585</ProjectGuid> | ||
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion> | ||
</PropertyGroup> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.Common.Default.props" /> | ||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.Common.props" /> | ||
<PropertyGroup /> | ||
<Import Project="GnssTrackerConnectivity.Common.projitems" Label="Shared" /> | ||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.CSharp.targets" /> | ||
</Project> |
File renamed without changes.
7 changes: 7 additions & 0 deletions
7
Source/GnssTracker/Connectivity/GnssTrackerConnectivity/ConnectionType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace GnssTrackerConnectivity; | ||
|
||
public enum ConnectionType | ||
{ | ||
WiFi, | ||
Bluetooth | ||
} |
Oops, something went wrong.