User Tools

Site Tools


en:thermophile
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Next revision
en:thermophile [2015/02/22 23:01] – created kakl
Line 1: Line 1:
 +FIXME **This page is not fully translated, yet. Please help completing the translation.**\\ //(remove this paragraph once the translation is finished)//
 +
 +====== Infrared thermometer ======
 +
 +This is a thermopile sensor for contact-less measurement of temperature.
 +
 +There is some sample code for usage with pymplab Python library:
 +
 +  from pymlab import config
 +
 +  #### Sensor Configuration ###########################################
 +  cfg = config.Config(
 +      i2c = {
 +          "port": 0, # I2C bus number
 +      },
 +  
 +      bus = [
 +      {
 +              "type": "i2chub",
 +              "address": 0x73,
 +              
 +              "children": [
 +                  {"name": "thermopile", "type": "thermopile01", "channel": 4, },
 +              ],
 +      },
 +      ],
 +  )
 +
 +  cfg.initialize()
 +  sensor = cfg.get_device("thermopile")
 +  
 +  #### Measurement ####################################################
 +  while True:
 +      print "Ta ", sensor.getTambient(),  To ", sensor.getTobject1()
 +
  
en/thermophile.txt · Last modified: 2015/02/22 23:11 (external edit)