mindleaving.PatientMonitorDataLogger 2025.3.29

dotnet add package mindleaving.PatientMonitorDataLogger --version 2025.3.29
                    
NuGet\Install-Package mindleaving.PatientMonitorDataLogger -Version 2025.3.29
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="mindleaving.PatientMonitorDataLogger" Version="2025.3.29" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="mindleaving.PatientMonitorDataLogger" Version="2025.3.29" />
                    
Directory.Packages.props
<PackageReference Include="mindleaving.PatientMonitorDataLogger" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add mindleaving.PatientMonitorDataLogger --version 2025.3.29
                    
#r "nuget: mindleaving.PatientMonitorDataLogger, 2025.3.29"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=mindleaving.PatientMonitorDataLogger&version=2025.3.29
                    
Install mindleaving.PatientMonitorDataLogger as a Cake Addin
#tool nuget:?package=mindleaving.PatientMonitorDataLogger&version=2025.3.29
                    
Install mindleaving.PatientMonitorDataLogger as a Cake Tool

Medical Device Clients

This library provides clients for connecting to some medical devices.

Currently supported:

  • Philips IntelliVue patient monitors

NuGet package

Available as mindleaving.PatientMonitorDataLogger from NuGet.

Supported devices

Philips IntelliVue

A nearly-complete implementation of the Philips IntelliVue Serial communication protocol.

Also contains a simulated patient monitor.

How to use with real patient monitor:

// Setup
var settings = PhilipsIntellivueClientSettings.CreateForPhysicalSerialPort(serialPortName, serialPortBaudRate, TimeSpan.FromSeconds(10), PollMode.Extended);
var philipsIntellivueCommunicator = new PhilipsIntellivueClient(settings);
philipsIntellivueCommunicator.NewMessage += (sender, message) => { /* Do something with the message, e.g. serialize to JSON and write to file */ };

// Connect
philipsIntellivueCommunicator.Connect(
    TimeSpan.FromSeconds(1), 
    ExtendedPollProfileOptions.POLL_EXT_PERIOD_NU_1SEC | ExtendedPollProfileOptions.POLL_EXT_PERIOD_RTSA | ExtendedPollProfileOptions.POLL_EXT_ENUM);
philipsIntellivueCommunicator.StartPolling(new()
{
    IncludeAlerts = true,
    IncludeNumerics = true,
    IncludeWaves = true,
    IncludePatientInfo = true
});
philipsIntellivueCommunicator.SendPatientDemographicsRequest();
while (Console.ReadKey(true).Key != ConsoleKey.Escape);

// Disconnect
philipsIntellivueCommunicator.Disconnect();

Use with simulated monitor:

var simulatedCable = new SimulatedCable();
var settings = PhilipsIntellivueClientSettings.CreateForSimulatedSerialPort(simulatedCable.End1, TimeSpan.FromSeconds(10), PollMode.Extended);

// Start simulated monitor
simulatedMonitor = new SimulatedPhilipsIntellivueMonitor(simulatedCable.End2);
simulatedMonitor.Start();

philipsIntellivueCommunicator.NewMessage += (sender, message) => { /* Do something with the message, e.g. serialize to JSON and write to file */ };
philipsIntellivueCommunicator.Connect(
    TimeSpan.FromSeconds(1), 
    ExtendedPollProfileOptions.POLL_EXT_PERIOD_NU_1SEC | ExtendedPollProfileOptions.POLL_EXT_PERIOD_RTSA | ExtendedPollProfileOptions.POLL_EXT_ENUM);
philipsIntellivueCommunicator.StartPolling(new()
{
    IncludeAlerts = true,
    IncludeNumerics = true,
    IncludeWaves = true,
    IncludePatientInfo = true
});
philipsIntellivueCommunicator.SendPatientDemographicsRequest();
while (Console.ReadKey(true).Key != ConsoleKey.Escape);

// Disconnect
philipsIntellivueCommunicator.Disconnect();
simulatedMonitor!.Stop();
simulatedCable!.Dispose();

Refer to the Philips IntelliVue communication protocol manual for details on the message structure. Philips IntelliVue uses attributes to transport measurements. Those attributes can contain custom structures containing values, e.g. sample arrays (waves) or single float values (numerics).

See PhilipsIntellivueNumericsAndWavesExtractor for code that extracts numerics and wave data from monitor messages.

B. Braun Space Infusion Pump System

Version 3.3x of BCC communication protocol is implemented.

Includes a simulated infusion pump rack

How to use with physical connection:

var clientSettings = BBraunBccClientSettings
    .CreateForPhysicalConnection(
        BccParticipantRole.Client,
        useCharacterStuffing: false,
        pollPeriod: TimeSpan.FromSeconds(10),
        spaceStationIp: "192.168.100.41",
        spaceStationPort: 4001, 
        messageRetentionPeriod: TimeSpan.FromSeconds(10));
var bccClient = new BBraunBccClient(clientSettings);
bccClient.NewMessage += (sender, message) => { /* Do something with the message */ };
bccClient.Connect();
bccClient.StartPolling();

while (Console.ReadKey(true).Key != ConsoleKey.Escape);

bccClient.StopPolling(); // If you are done using the client, call .Dispose() directly. It will call .StopPolling() and .Disconnect().
bccClient.Disconnect();
bccClient.Dispose();

How to use with simulated rack:

var simulatedCable = new SimulatedCable();
var clientSettings = BBraunBccClientSettings
    .CreateForSimulatedConnection(
        BccParticipantRole.Client,
        useCharacterStuffing: false,
        messageRetentionPeriod: TimeSpan.FromSeconds(10), 
        pollPeriod: TimeSpan.FromSeconds(10), 
        simulatedCable.End1);
var bccClient = new BBraunBccClient(clientSettings);
bccClient.NewMessage += (sender, message) => { /* Do something with the message */ };

var rackSettings = BBraunBccClientSettings.CreateForSimulatedConnection(
    BccParticipantRole.Server,
    clientSettings.UseCharacterStuffing,
    messageRetentionPeriod: TimeSpan.FromSeconds(10),
    pollPeriod: TimeSpan.FromSeconds(30), // Not used. Could be used for simulation of Cyclic Mode in the future
    simulatedCable.End2);
var simulatedInfusionPumpRack = new SimulatedBBraunRack(
    "SpaceSystem",
    [
        new SimulatedBBraunRackPillar(3)
    ],
    rackSettings);

// Connect
simulatedInfusionPumpRack.Start();
bccClient.Connect();
bccClient.StartPolling();
while (Console.ReadKey(true).Key != ConsoleKey.Escape);

// Shut down
bccClient.StopPolling(); // If you are done using the client, call .Dispose() directly. It will call .StopPolling() and .Disconnect().
bccClient.Disconnect();
simulatedInfusionPumpRack.Stop();
simulatedInfusionPumpRack.Dispose();
bccClient.Dispose();
simulatedCable.Dispose();
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2025.3.29 79 16 days ago
2025.3.11 153 a month ago
2025.3.5.3 205 a month ago
2025.3.5.2 202 a month ago
2025.3.5 200 a month ago