Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

example: Add ambientlight example using dh1750 #99

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions examples/ambientlight/ambientlight.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# SPDX-License: BSD-3-Clause-Attribution
# Info: https://github.com/abandonware/bh1750

Wire = require '../../main'

GET = 0x10



class Ambientlight

address: 0x23

constructor: (@address) ->
@wire = new Wire @address;

read: (callback) ->
setTimeout =>
@_read GET, 2, (err, buffer) ->
if not err
data = ((buffer[0] <<8) + buffer[1]) / 1.2;
callback null, data
else
callback err, null
, 200

_read: (cmd, length, callback) ->
@wire.readBytes cmd, length, callback

sensor = new Ambientlight(0x23)
sensor.read (err, data) ->
console.log data