Skip to content
This repository was archived by the owner on May 15, 2024. It is now read-only.
This repository was archived by the owner on May 15, 2024. It is now read-only.

Barometer/Pressure API #348

@nicolgit

Description

@nicolgit

Description

Implements an API that allows to interact with Pressure sensor when available in order to have:

  • current pressure

API

public class Barometer
{
    bool IsMonitoring { get; private set; }
    void Start();
    void Stop();
    event BarometerChangedEventHandler ReadingChanged;
}

Struct BarometerChangedEventHandler

    public class BarometerChangedEventHandler : EventArgs
    {
        double Pressure {get; private set}; //In Hectopascals (hPA)
    }

Implementation

Metadata

Metadata

Assignees

No one assigned

    Labels

    proposalProposed feature or enhancement.ready-to-implementFeature approved, specs written, and ready to implement.up-for-grabsImplementation from community can be started.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions