Skip to content

Commit

Permalink
Cov property (#8)
Browse files Browse the repository at this point in the history
* Updating the CAS BACnet Stack to the latest version

* Using an array of lifts instead of individual lifts

* Added better navigation for lifts.

* Printed lift status with enumerated text

* Added examples for passenger alarm, car moving direction, car position, car door status

Co-authored-by: ssmethurst <49768603+ssmethurst@users.noreply.github.com>
  • Loading branch information
funvill and ssmethurst committed Jan 21, 2020
1 parent 1971cc0 commit e6e0e04
Show file tree
Hide file tree
Showing 9 changed files with 644 additions and 634 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,13 @@ BACnetElevatorExample/BACnetElevatorExample/obj/Debug/
BACnetElevatorExample/BACnetElevatorExample/obj/SB800EX/

BACnetElevatorExample/BACnetElevatorExample/obj/

BACnetElevatorExample/obj/

BACnetElevatorExample/libCASBACnetStack_x64_Debug.so

BACnetElevatorExample/libCASBACnetStack_x64_Release.so

BACnetElevatorExample/Properties/PublishProfiles/FolderProfile.pubxml

BACnetElevatorExample/Properties/PublishProfiles/FolderProfile.pubxml.user
2 changes: 2 additions & 0 deletions BACnetElevatorExample/BACnetElevatorExample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>../bin</OutputPath>
<WarningLevel>2</WarningLevel>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>../bin</OutputPath>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>

<ItemGroup>
Expand Down
355 changes: 197 additions & 158 deletions BACnetElevatorExample/BACnetElevatorExampleDatabase.cs

Large diffs are not rendered by default.

847 changes: 422 additions & 425 deletions BACnetElevatorExample/Program.cs

Large diffs are not rendered by default.

This file was deleted.

This file was deleted.

This file was deleted.

12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,18 @@ BACnetEscalatorFault ::= ENUMERATED

This project also auto built using [Gitlab CI](https://docs.gitlab.com/ee/ci/) on every commit.

To build this project, copy the CAS BACnet Stack DLL/SO file into the project output directory. Then using the following command to build run with donet

```bash

cd BACnetElevatorExample
dotnet publish -c Release
cd ../bin/netcoreapp2.1/publish/
--- Copy libCASBACnetStack_x64_Release.so into the /bin/netcoreapp2.1/publish/ folder ---
dotnet BACnetElevatorExample.dll

```

### Windows

A [Visual studios 2019](https://visualstudio.microsoft.com/vs/) project is included with this project.
2 changes: 1 addition & 1 deletion submodules/cas-bacnet-stack

0 comments on commit e6e0e04

Please sign in to comment.