Giter VIP home page Giter VIP logo

tsl2561_luminosity_sensor_bob's Introduction

NOTE: This product has been retired from our catalog. If you are looking for more up-to-date info, please check out some of these resources to see how other users are still hacking and improving on this product.

SparkFun TSL2561 Luminosity Sensor Breakout Board

TSL2561 Luminosity Sensor Breakout

TSL2561 Luminosity Sensor Breakout (SEN-12055)

This is a breakout board for the AMS/TAOS TSL2561 Luminosity sensor. This illumination sensor has a flat response across most of the visible spectrum and has an adjustable integration time. It communicates via I2C and runs at 3.3V.

Repository Contents

  • /Documentation - Datasheets and additional information
  • /Hardware - Eagle design files (.brd, .sch)
  • /Libraries - Libraries for use with the TSL2561
  • /Production - Production panel files (.brd)

Documentation

License Information

This product is open source!

The hardware is released under Creative Commons ShareAlike 4.0 International.

The code is beerware; if you see me (or any other SparkFun employee) at the local, and you've found our code helpful, please buy us a round!

Please use, reuse, and modify these files as you see fit. Please maintain attribution to SparkFun Electronics and release anything derivative under the same license.

Distributed as-is; no warranty is given.

  • Your friends at SparkFun.

tsl2561_luminosity_sensor_bob's People

Contributors

dkadish avatar grahldg avatar robert-hunke avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

tsl2561_luminosity_sensor_bob's Issues

Exposed Vias

Hey mike, I just saw this on a build come through production. It looks like your vias are 23 mil, and so the DRC has opened up the mask on all of them. Other than this minor problem the design looks fine.

Unless you'd like to take this quick rev, I think this could be handled by Patrick.

Let us know and thanks!

Tent your vias

From product photos the silk is pretty broken. Use 0.02"(?) drill hits to get the soldermask to cover over vias.

scaling incorrect

Looking at the TSL2561 dat sheet on page 26 it says

// scale if gain is NOT 16X
if (!iGain) chScale = chScale << 4;

Looking @ line 215 SFE_TSL2561.cpp it says
// Normalize for gain
if (gain)
{
d0 /= 16;
d1 /= 16;
}

I changed that bit into

// Normalize for gain
if (!gain)
{
    d0 *= 16;
    d1 *= 16;
}

And now the integer math and float math of the sparkfun example return pretty much the same value.

gain: 1, broadband: 26693, ir: 7678, lux: 33029 -- 33260.40
gain: 1, broadband: 26718, ir: 7683, lux: 33068 -- 33298.91
gain: 1, broadband: 26720, ir: 7687, lux: 33058 -- 33289.90

Use single solder jumper for I2C pull up

Does it make sense to use a single jumper (two pad) for the I2C resistor pull up with a cuttable trace? Might cut back on solder paste. Might make layout a little easier. Not a big issue.

Filename mismatch

I used this repo a while ago for my TSL2561 and it worked fine, but now that I updated it seems the names of the source files have been changed from SFE_TSL2561.xxx to SparkFunTSL2561ArduinoLibrary.xxx. However, the cpp file still tries to include SFE_TSL2561.h, so now it doesn't compile. (Personally, I prefer the old names...)

I'm also confused why there are identical files in src/ and Libraries/Arduino/src/.

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.