Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # ieee754 [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url]
  2. [travis-image]: https://img.shields.io/travis/feross/ieee754/master.svg
  3. [travis-url]: https://travis-ci.org/feross/ieee754
  4. [npm-image]: https://img.shields.io/npm/v/ieee754.svg
  5. [npm-url]: https://npmjs.org/package/ieee754
  6. [downloads-image]: https://img.shields.io/npm/dm/ieee754.svg
  7. [downloads-url]: https://npmjs.org/package/ieee754
  8. [standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg
  9. [standard-url]: https://standardjs.com
  10. [![saucelabs][saucelabs-image]][saucelabs-url]
  11. [saucelabs-image]: https://saucelabs.com/browser-matrix/ieee754.svg
  12. [saucelabs-url]: https://saucelabs.com/u/ieee754
  13. ### Read/write IEEE754 floating point numbers from/to a Buffer or array-like object.
  14. ## install
  15. ```
  16. npm install ieee754
  17. ```
  18. ## methods
  19. `var ieee754 = require('ieee754')`
  20. The `ieee754` object has the following functions:
  21. ```
  22. ieee754.read = function (buffer, offset, isLE, mLen, nBytes)
  23. ieee754.write = function (buffer, value, offset, isLE, mLen, nBytes)
  24. ```
  25. The arguments mean the following:
  26. - buffer = the buffer
  27. - offset = offset into the buffer
  28. - value = value to set (only for `write`)
  29. - isLe = is little endian?
  30. - mLen = mantissa length
  31. - nBytes = number of bytes
  32. ## what is ieee754?
  33. The IEEE Standard for Floating-Point Arithmetic (IEEE 754) is a technical standard for floating-point computation. [Read more](http://en.wikipedia.org/wiki/IEEE_floating_point).
  34. ## license
  35. BSD 3 Clause. Copyright (c) 2008, Fair Oaks Labs, Inc.