Coder Social home page Coder Social logo

bmp280's People

Contributors

barafael avatar little-arhat avatar nnarain avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

bmp280's Issues

Documentation link in README is wrong

It seems that README.md points to API documentation for a completely different 'bmp280' module. This is very confusing.

Actual API documentation would be very helpful, but at least the wrong link should be removed.

Pressure is always 1048576.0

Any idea why I would be getting 1048576.0 as the value for pressure every time? I reset the config to forced each time like in the example in the proving ground repository. I'm using the latest commit from master.

Incorrect status calculation

The expression 1 == status & 0b00001000 will always evaluate to false.

Wrong:

/// Returns device status
pub fn status(&mut self) -> Status {
    let status = self.read_byte(Register::status);
    Status {
        measuring: (1 == status & 0b00001000),
        im_update: (1 == status & 0b00000001),
    }
}

Correct:

/// Returns device status
pub fn status(&mut self) -> Status {
    let status = self.read_byte(Register::status);
    Status {
        measuring: (status & 0b00001000) != 0b0,
        im_update: (status & 0b00000001) != 0b0,
    }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.