Git Product home page Git Product logo

dfrobot_max31855_old's Introduction

DFRobot_MAX31855 Gravity: Digital High Temperature Sensor (K-type)

MAX31855 is a temperature measuring device.This converter resolves temperatures to 0.25℃, allows readings as high as +1800℃ and as low as -270℃.

Table of Contents

Summary

This is a Library for MAX31855,the function is to read the temperature by thermocouple. If warming 'ImportError: No module named wiringpi' in raspberry, you need to execute pip install wiringpi.

Methods

Arduino

#include <DFRobot_MAX31855.h>
/*
 * @brief The constructor
 */
DFRobot_MAX31855();

/*
 * @brief Detect I2C device.
 *
 * @return true if execute successfully, false otherwise.
 */
bool scan();

/*
 * @brief Read the temperature.
 *
 * @return temperature if execute successfully.
 */
float readCelsius();

micropython

import MAX31855

# @brief The constructor.
#
# @param i2c I2C object.
MAX31855(i2c)

# @brief Detect I2C device.
#
# @return True if execute successfully, False otherwise.
scan()


# @brief Read the temperature.
#
# @return temperature if execute successfully.
readCelsius()

Raspberry Pi

import DFRobot_MAX31855
#
# @brief The constructor.

DFRobot_MAX31855()


#  @brief Read the temperature.
# 
#  @return temperature if execute successfully.
readCelsius()

Compatibility

MCU Work Well Work Wrong Untested Remarks
Raspberry Pi     √                            
FireBeetle-ESP32
FireBeetle-ESP8266
Leonardo

History

  • data 2018-3-6
  • version V0.1

Credits

dfrobot_max31855_old's People

Contributors

lixin7 avatar mengbishu avatar onionstack avatar ouki-wang avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dfrobot_max31855_old's Issues

Reading internal cold-junction compensation temperature

The Adafruit library for their SPI breakout for this sensor includes a readInternal() function that provides the cold-junction temperature, which is necessary for error-correction.
Is this data available via the I2C interface on this board?
If so would it be possible to add this functionality to the library (or at least a reference for how/where this data is stored)

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.