├── .gitignore ├── .gitignore.orig ├── BACSharp ├── APDU │ ├── ConfirmedRequest.cs │ ├── IBacNetApdu.cs │ └── UnconfirmedRequest.cs ├── ArrayExtensions.cs ├── BACSharp.csproj ├── BACSharp.sln ├── BacNetDevice.cs ├── BacNetEnums.cs ├── BacNetListener.cs ├── BacNetResponse.cs ├── BacNetResponse.cs.orig ├── BacNetServices.cs ├── ByteConverter.cs ├── NPDU │ ├── BacNetIpNpdu.cs │ └── IBacNetNpdu.cs ├── Network │ ├── BacNetIpNetwork.cs │ └── IBacNetNetwork.cs ├── Properties │ └── AssemblyInfo.cs ├── Services │ ├── Acknowledgement │ │ ├── AckServices.cs │ │ ├── ErrorAck.cs │ │ ├── ReadPropertyAck.cs │ │ ├── ReadPropertyMultipleAck.cs │ │ ├── SegmentAck.cs │ │ └── SimpleAck.cs │ ├── Confirmed │ │ ├── ConfirmedServices.cs │ │ ├── ConfirmedServices.cs.orig │ │ ├── CreateObject.cs │ │ ├── DeleteObject.cs │ │ ├── ReadProperty.cs │ │ ├── ReadPropertyMultiple.cs │ │ ├── SubscribeCOV.cs │ │ └── WriteProperty.cs │ ├── IBacNetService.cs │ └── Unconfirmed │ │ ├── IAm.cs │ │ ├── UnconfirmedCOVnotification.cs │ │ ├── UnconfirmedEventNotification.cs │ │ ├── UnconfirmedServices.cs │ │ └── WhoIs.cs └── Types │ ├── BacNetAddress.cs │ ├── BacNetBool.cs │ ├── BacNetDouble.cs │ ├── BacNetEnumeration.cs │ ├── BacNetInt.cs │ ├── BacNetObject.cs │ ├── BacNetObjectPropertyRef.cs │ ├── BacNetProperty.cs │ ├── BacNetRawMessage.cs │ ├── BacNetReal.cs │ ├── BacNetRemoteDevice.cs │ ├── BacNetString.cs │ ├── BacNetTag.cs │ ├── BacNetTime.cs │ ├── BacNetTimeStamp.cs │ ├── BacNetUInt.cs │ └── BacNetWeeklySchedule.cs ├── ExternalLibs ├── NLog.dll └── Nlog.config └── TemplateApp ├── Form1.Designer.cs ├── Form1.Designer.cs.orig ├── Form1.cs ├── Form1.cs.orig ├── Form1.resx ├── LampGroup.cs ├── Nlog.config ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings └── TemplateApp.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitignore.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/.gitignore.orig -------------------------------------------------------------------------------- /BACSharp/APDU/ConfirmedRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/APDU/ConfirmedRequest.cs -------------------------------------------------------------------------------- /BACSharp/APDU/IBacNetApdu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/APDU/IBacNetApdu.cs -------------------------------------------------------------------------------- /BACSharp/APDU/UnconfirmedRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/APDU/UnconfirmedRequest.cs -------------------------------------------------------------------------------- /BACSharp/ArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/ArrayExtensions.cs -------------------------------------------------------------------------------- /BACSharp/BACSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/BACSharp.csproj -------------------------------------------------------------------------------- /BACSharp/BACSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/BACSharp.sln -------------------------------------------------------------------------------- /BACSharp/BacNetDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/BacNetDevice.cs -------------------------------------------------------------------------------- /BACSharp/BacNetEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/BacNetEnums.cs -------------------------------------------------------------------------------- /BACSharp/BacNetListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/BacNetListener.cs -------------------------------------------------------------------------------- /BACSharp/BacNetResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/BacNetResponse.cs -------------------------------------------------------------------------------- /BACSharp/BacNetResponse.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/BacNetResponse.cs.orig -------------------------------------------------------------------------------- /BACSharp/BacNetServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/BacNetServices.cs -------------------------------------------------------------------------------- /BACSharp/ByteConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/ByteConverter.cs -------------------------------------------------------------------------------- /BACSharp/NPDU/BacNetIpNpdu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/NPDU/BacNetIpNpdu.cs -------------------------------------------------------------------------------- /BACSharp/NPDU/IBacNetNpdu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/NPDU/IBacNetNpdu.cs -------------------------------------------------------------------------------- /BACSharp/Network/BacNetIpNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Network/BacNetIpNetwork.cs -------------------------------------------------------------------------------- /BACSharp/Network/IBacNetNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Network/IBacNetNetwork.cs -------------------------------------------------------------------------------- /BACSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BACSharp/Services/Acknowledgement/AckServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Acknowledgement/AckServices.cs -------------------------------------------------------------------------------- /BACSharp/Services/Acknowledgement/ErrorAck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Acknowledgement/ErrorAck.cs -------------------------------------------------------------------------------- /BACSharp/Services/Acknowledgement/ReadPropertyAck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Acknowledgement/ReadPropertyAck.cs -------------------------------------------------------------------------------- /BACSharp/Services/Acknowledgement/ReadPropertyMultipleAck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Acknowledgement/ReadPropertyMultipleAck.cs -------------------------------------------------------------------------------- /BACSharp/Services/Acknowledgement/SegmentAck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Acknowledgement/SegmentAck.cs -------------------------------------------------------------------------------- /BACSharp/Services/Acknowledgement/SimpleAck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Acknowledgement/SimpleAck.cs -------------------------------------------------------------------------------- /BACSharp/Services/Confirmed/ConfirmedServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Confirmed/ConfirmedServices.cs -------------------------------------------------------------------------------- /BACSharp/Services/Confirmed/ConfirmedServices.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Confirmed/ConfirmedServices.cs.orig -------------------------------------------------------------------------------- /BACSharp/Services/Confirmed/CreateObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Confirmed/CreateObject.cs -------------------------------------------------------------------------------- /BACSharp/Services/Confirmed/DeleteObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Confirmed/DeleteObject.cs -------------------------------------------------------------------------------- /BACSharp/Services/Confirmed/ReadProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Confirmed/ReadProperty.cs -------------------------------------------------------------------------------- /BACSharp/Services/Confirmed/ReadPropertyMultiple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Confirmed/ReadPropertyMultiple.cs -------------------------------------------------------------------------------- /BACSharp/Services/Confirmed/SubscribeCOV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Confirmed/SubscribeCOV.cs -------------------------------------------------------------------------------- /BACSharp/Services/Confirmed/WriteProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Confirmed/WriteProperty.cs -------------------------------------------------------------------------------- /BACSharp/Services/IBacNetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/IBacNetService.cs -------------------------------------------------------------------------------- /BACSharp/Services/Unconfirmed/IAm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Unconfirmed/IAm.cs -------------------------------------------------------------------------------- /BACSharp/Services/Unconfirmed/UnconfirmedCOVnotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Unconfirmed/UnconfirmedCOVnotification.cs -------------------------------------------------------------------------------- /BACSharp/Services/Unconfirmed/UnconfirmedEventNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Unconfirmed/UnconfirmedEventNotification.cs -------------------------------------------------------------------------------- /BACSharp/Services/Unconfirmed/UnconfirmedServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Unconfirmed/UnconfirmedServices.cs -------------------------------------------------------------------------------- /BACSharp/Services/Unconfirmed/WhoIs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Services/Unconfirmed/WhoIs.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetAddress.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetBool.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetDouble.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetEnumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetEnumeration.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetInt.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetObject.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetObjectPropertyRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetObjectPropertyRef.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetProperty.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetRawMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetRawMessage.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetReal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetReal.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetRemoteDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetRemoteDevice.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetString.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetTag.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetTime.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetTimeStamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetTimeStamp.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetUInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetUInt.cs -------------------------------------------------------------------------------- /BACSharp/Types/BacNetWeeklySchedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/BACSharp/Types/BacNetWeeklySchedule.cs -------------------------------------------------------------------------------- /ExternalLibs/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/ExternalLibs/NLog.dll -------------------------------------------------------------------------------- /ExternalLibs/Nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/ExternalLibs/Nlog.config -------------------------------------------------------------------------------- /TemplateApp/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/Form1.Designer.cs -------------------------------------------------------------------------------- /TemplateApp/Form1.Designer.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/Form1.Designer.cs.orig -------------------------------------------------------------------------------- /TemplateApp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/Form1.cs -------------------------------------------------------------------------------- /TemplateApp/Form1.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/Form1.cs.orig -------------------------------------------------------------------------------- /TemplateApp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/Form1.resx -------------------------------------------------------------------------------- /TemplateApp/LampGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/LampGroup.cs -------------------------------------------------------------------------------- /TemplateApp/Nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/Nlog.config -------------------------------------------------------------------------------- /TemplateApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/Program.cs -------------------------------------------------------------------------------- /TemplateApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TemplateApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TemplateApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/Properties/Resources.resx -------------------------------------------------------------------------------- /TemplateApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TemplateApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/Properties/Settings.settings -------------------------------------------------------------------------------- /TemplateApp/TemplateApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kib357/BACsharp/HEAD/TemplateApp/TemplateApp.csproj --------------------------------------------------------------------------------