Skip to content
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