Giter Site home page Giter Site logo

gfb's People

Watchers

 avatar

gfb's Issues

Faulty temperature readings in DS2438 library - ds2438::readTempC() looses sign when shifting data from read

What steps will reproduce the problem?
1. When the the temperqature drops below zero the sensor gives wrong readings

See: http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1289330809/0

What is the expected output? What do you see instead?
expected negative values, see positive

What version of the product are you using? On what operating system?
-

Please provide any additional information below.
In the thread on the forum a solution is proposed by me to change readTempC() 
function to correct the output. This need to be confirmed by someone who has 
such sensor (and a freezer :)
Rob Tillaart




Original issue reported on code.google.com by [email protected] on 10 Nov 2010 at 8:11

Ds2438 library

Trying to run the humidity program and I get compile errors like " stray 
|'277'. These are coming from the DS2438.ccp file. Any idea? Which Onewire 
library are you uing.

Thanks

Original issue reported on code.google.com by [email protected] on 16 Aug 2010 at 12:55

  • Merged into: #2

DS2423 counter loops at 8 bit

What steps will reproduce the problem?
1. count larger values than 255
2. ???
3. Profit

What is the expected output? What do you see instead?
expected: 256, what i got: 1

What version of the product are you using? On what operating system?
Arduino IDE 1.01

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 22 Jan 2013 at 8:12

readTempC does not wait until TB in status register is cleared


The readTempC() function now does a delay(20) after requesting a new 
temperature. Accorfing to the datasheet one should wait until the TB flag is 
cleared in the status register.

see discussion @ http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1289330809/0

[code]
  // wait until TB register clears, see page 15/29 datasheet
  // iso delay(20);
  boolean ready = false;
  while (!ready)
  {
     //copy data from eeprom to scratchpad & read scratchpad
    _readMem(_scratchPad);
    ready = ( _scratchPad[STATUS]  & 0x10) == 0x00;
    delay(10);  // wait before reread of the scratchpad
  }
  // TB is cleared so conversion is ready
[/code]

Same is possibly true for the other readings, did not look after that.



What steps will reproduce the problem?


What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 10 Nov 2010 at 8:23

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.