Giter VIP home page Giter VIP logo

ms5803_14's Introduction

DOI

Arduino library for the Measurement Specialties MS5803-14BA pressure sensor modules. This library DOES NOT work with other pressure range modules like the MS5803-30BA, and it will return incorrect pressure and temperature values if used with other models. See http://github.com/millerlp for libraries to use with the other MS5803 pressure sensor models.

The MS5803 pressure sensor works on voltages around 3 volts. To use it with a 5V Arduino, you need to supply the sensor power from the Arduino's 3V3 voltage output. Additionally, you must place 10k ohm resistors between the SDA + SCL I2C communication lines and the 3V3 voltage supply to keep the data lines from exceeding 3.3V. The manufacturer recommends placing a 0.1 microFarad (100 nF) ceramic capacitor between pin 5 (Vdd) and ground.

This library assumes the MS5803 is set to the I2C address 0x76, created by wiring CSB (pad 3) to the 3.3V supply. In addition, PS (pad 6) must be tied to 3.3V supply to invoke I2C communications mode. The SPI protocol is not supported in this library because I'm lazy.

The start of your Arduino sketch must include the lines:

#include <Wire.h>
#include "MS5803_14.h"

MS_5803 sensor = MS_5803(512);

to use this library. The function MS_5803() takes one argument for the oversampling range. Available values are 256, 512, 1024, 2048, and 4096. The default is 512 if you do not enter a value manually. Larger values include longer delays to allow the sensor to complete a sample.

In the setup loop, initialize the sensor as follows:

	// This must be in the setup loop. arguments: true or false for verbose output
	// Returns a boolean true or false depending on whether the CRC error check
	// succeeds or fails. See the example sketch.
	sensor.initializeMS_5803(true) 

Other useful commands:


	readSensor() // Get temperature and pressure from sensor

	temperature() // Get temperature in Celsius (returns a float value)
	
	pressure() // Get pressure in mbar (returns a float value)

ms5803_14's People

Contributors

millerlp avatar benchittle avatar

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.