Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for UART control mode for a02yyuw distance sensor #976

Open
wants to merge 47 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
c2c3830
adding ITemperatureSensor and new method of calibration
jamieboyd Feb 22, 2024
61af8ce
added code for UART Control mode plus datasheets
jamieboyd May 9, 2024
eef9209
Changes upstream, where did they come from
jamieboyd May 9, 2024
a07eda0
merging
jamieboyd May 10, 2024
6ed899f
fixed small bug in serial initialization
jamieboyd May 10, 2024
88f3183
Merge branch 'WildernessLabs:develop' into develop
jamieboyd May 16, 2024
ebe5356
DO meter
jamieboyd May 17, 2024
0097b9a
DO meter
jamieboyd May 17, 2024
f98bdc3
added updating to Thermistor
jamieboyd May 17, 2024
94cf438
added updating to Thermistor
jamieboyd May 17, 2024
a9ded85
Merge branch 'WildernessLabs:develop' into develop
jamieboyd May 22, 2024
84d336a
Updating stuff
jamieboyd May 22, 2024
605dc65
Updating Conditions
jamieboyd May 22, 2024
c72a264
Updating Conditions
jamieboyd May 22, 2024
9c365bc
Updating Conditions
jamieboyd May 22, 2024
ed5dd86
Updating
jamieboyd May 22, 2024
fa3db48
Updating
jamieboyd May 22, 2024
64ba5fa
added thermistor
jamieboyd May 22, 2024
1274def
Added thermistor
jamieboyd May 22, 2024
0044e06
Merge branch 'develop' of https://github.com/jamieboyd/Meadow.Foundat…
jamieboyd May 22, 2024
87b18d1
updating git ignore, stop tracking .csproj and .sln
jamieboyd May 22, 2024
61fd107
More changes to updating
jamieboyd May 23, 2024
5cf3a11
More changes to updating
jamieboyd May 23, 2024
cd4cf70
More changes to updating
jamieboyd May 23, 2024
37661d4
updating
jamieboyd May 23, 2024
6dd01e1
updating
jamieboyd May 23, 2024
b7ecf22
updating
jamieboyd May 23, 2024
8984d38
Delete Source/WaterPlantir directory
jamieboyd May 23, 2024
8b726f7
Merge branch 'WildernessLabs:develop' into develop
jamieboyd May 23, 2024
fb85e88
DO sensor improvements
jamieboyd May 27, 2024
1f351b2
Merge branch 'WildernessLabs:develop' into develop
jamieboyd May 28, 2024
4f50932
Thermistor explorations
jamieboyd May 30, 2024
82eec3b
Merge branch 'develop' of https://github.com/jamieboyd/Meadow.Foundat…
jamieboyd May 30, 2024
63fa1cf
Merge branch 'WildernessLabs:develop' into develop
jamieboyd May 30, 2024
8d5c057
Interfaces
jamieboyd May 31, 2024
bb34957
Merge branch 'develop' of https://github.com/jamieboyd/Meadow.Foundat…
jamieboyd May 31, 2024
8588521
More Interface and update stuff
jamieboyd May 31, 2024
8fdcd34
Merge branch 'WildernessLabs:develop' into develop
jamieboyd May 31, 2024
e4d8405
Merge branch 'WildernessLabs:develop' into develop
jamieboyd May 31, 2024
05eaf65
A02 with UART controlled output mode
jamieboyd Jun 5, 2024
2485223
DO meter updates
jamieboyd Jun 5, 2024
574cc39
Merge branch 'develop' of https://github.com/jamieboyd/Meadow.Foundat…
jamieboyd Jun 5, 2024
9ebb74f
Merge branch 'WildernessLabs:develop' into develop
jamieboyd Jun 5, 2024
71a916a
A02 distance sensor rewriting
jamieboyd Jun 6, 2024
3030188
Merge branch 'WildernessLabs:develop' into develop
jamieboyd Jun 17, 2024
b674bc2
DO sensor code and docs
jamieboyd Jun 17, 2024
1159560
Merge branch 'develop' of https://github.com/jamieboyd/Meadow.Foundat…
jamieboyd Jun 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ StyleCopReport.xml
*.pidb
*.svclog
*.scc
*.csproj
*.sln

# Chutzpah Test files
_Chutzpah*
Expand Down Expand Up @@ -411,3 +413,9 @@ OnBoardFlash.dat.*
# NETMF
OnBoardFlash.dat

*.csproj
*.vbproj
*.json
*.csproj
*.vbproj
*.vbproj

This file was deleted.

2 changes: 2 additions & 0 deletions Source/Meadow.Foundation.Core/Meadow.Foundation.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Meadow.Contracts\Source\Meadow.Contracts\Meadow.Contracts.csproj" />
<ProjectReference Include="..\..\..\Meadow.Units\Source\Meadow.Units\Meadow.Units.csproj" />
<ProjectReference Include="..\..\..\Meadow.Logging\Source\Meadow.Logging\lib\Meadow.Logging.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\source\implementations\windows\Meadow.Windows\Meadow.Windows.csproj" />
<ProjectReference Include="..\..\..\..\Meadow.Foundation.Peripherals\Displays.WinForms\Driver\Displays.WinForms.csproj" />
<ProjectReference Include="..\..\Driver\Graphics.MicroLayout.csproj" />
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\source\implementations\windows\Meadow.Windows\Meadow.Windows.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
<ProjectReference Include="..\..\..\..\Meadow.Foundation.Peripherals\Displays.WinForms\Driver\Displays.WinForms.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
<ProjectReference Include="..\..\Driver\Graphics.MicroLayout.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\source\implementations\windows\Meadow.Windows\Meadow.Windows.csproj" />
<ProjectReference Include="..\..\..\..\Meadow.Foundation.Peripherals\Displays.WinForms\Driver\Displays.WinForms.csproj" />
<ProjectReference Include="..\..\Driver\Graphics.MicroLayout.csproj" />
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\source\implementations\windows\Meadow.Windows\Meadow.Windows.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
<ProjectReference Include="..\..\..\..\Meadow.Foundation.Peripherals\Displays.WinForms\Driver\Displays.WinForms.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
<ProjectReference Include="..\..\Driver\Graphics.MicroLayout.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\source\implementations\windows\Meadow.Windows\Meadow.Windows.csproj" />
<ProjectReference Include="..\..\..\..\Meadow.Foundation.Peripherals\Displays.WinForms\Driver\Displays.WinForms.csproj" />
<ProjectReference Include="..\..\Driver\Graphics.MicroLayout.csproj" />
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\source\implementations\windows\Meadow.Windows\Meadow.Windows.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
<ProjectReference Include="..\..\..\..\Meadow.Foundation.Peripherals\Displays.WinForms\Driver\Displays.WinForms.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
<ProjectReference Include="..\..\Driver\Graphics.MicroLayout.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,21 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\source\implementations\windows\Meadow.Windows\Meadow.Windows.csproj" />
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\source\Meadow.Core\Meadow.Core.csproj" />
<ProjectReference Include="..\..\..\..\Meadow.Foundation.Peripherals\Displays.Max7219\Driver\Displays.Max7219.csproj" />
<ProjectReference Include="..\..\..\..\Meadow.Foundation.Peripherals\ICs.IOExpanders.Ftxxxx\Driver\ICs.IOExpanders.Ftxxxx.csproj" />
<ProjectReference Include="..\..\Driver\Graphics.MicroLayout.csproj" />
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\source\implementations\windows\Meadow.Windows\Meadow.Windows.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\source\Meadow.Core\Meadow.Core.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
<ProjectReference Include="..\..\..\..\Meadow.Foundation.Peripherals\Displays.Max7219\Driver\Displays.Max7219.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
<ProjectReference Include="..\..\..\..\Meadow.Foundation.Peripherals\ICs.IOExpanders.Ftxxxx\Driver\ICs.IOExpanders.Ftxxxx.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
<ProjectReference Include="..\..\Driver\Graphics.MicroLayout.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
<None Include="..\..\..\icon.png" Link="icon.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Meadow.Foundation.Libraries_and_Frameworks\Graphics.MicroGraphics\Driver\Graphics.MicroGraphics.csproj" />
<ProjectReference Include="..\..\..\Meadow.Foundation.Libraries_and_Frameworks\Graphics.MicroGraphics\Driver\Graphics.MicroGraphics.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
<LangVersion>10.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\Source\implementations\windows\Meadow.Windows\Meadow.Windows.csproj" />
<ProjectReference Include="..\..\Driver\Displays.WinForms.csproj" />
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\Source\implementations\windows\Meadow.Windows\Meadow.Windows.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
<ProjectReference Include="..\..\Driver\Displays.WinForms.csproj">
<ReferenceSourceTarget></ReferenceSourceTarget>
</ProjectReference>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
<OutputType>Library</OutputType>
<AssemblyName>App</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DefineDebug>false</DefineDebug>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\Meadow.Core\source\implementations\f7\Meadow.F7\Meadow.F7.csproj" />
<ProjectReference Include="..\..\Driver\Sensors.Atmospheric.Bmx280.csproj" />
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading