Slashdot Mirror


Add USB LED Notifications To Your PC With Just a Bit of Soldering (Video)

Arvydas Juskevicius (say that five times fast) is an independent software developer and hardware hacker based in London (which is where I got a chance to talk with him) who's decided to bring the useful LED signalling capabilities of many modern smartphones into the world of desktop or laptop computers. With his £10 BlinkStick kit (£15 pre-assembled), you get a programmable multi-color LED that's about the size of a flash memory key. Deceptively simple -- it's essentially one giant pixel, after all, which might not sound exciting when you have millions of them on a dense display surface. But that LED light is something you can use as a signal for alarms, or to tell you that you have a message from one app while another is at full-screen, or practically anything else that you can devise software to notice and react to. I get the sense that Juskevicius would prefer that people get the kit version, to help spur interest in actually soldering some hardware rather than just plugging it in. If you're allergic to paying in other than U.S. dollars, the BlinkStick is also available from Adafruit Industries. Watch the video below to see it in action.

83 of 129 comments (clear)

  1. Name by reikae · · Score: 3, Funny

    I said his name five times fast, nothing happened. Should I do it in front of a mirror?

    1. Re: Name by MickLinux · · Score: 2

      Ar-vee-duhs You-skah-vitch-ee-us. Why not try a hard name like Alison Palin's son?

      The name is Lithuanian; Because the first and last name's endings match each other, almost definitely Arvydas was Lithuanian born. Also, that c should be a che, a c with a little carrot over it.

      If you want something that is really hard to say, try saying six geese with six goslings: sheshyos zhasheese su sheshiyays zhashy-yukiaise

      --
      Correct Horse Battery Staple: 72 bits of entropy. Enter "Correct H" into google. When it generates the phrase, that's
    2. Re: Name by MickLinux · · Score: 1

      Whoops. That ess is an esh, too

      --
      Correct Horse Battery Staple: 72 bits of entropy. Enter "Correct H" into google. When it generates the phrase, that's
    3. Re:Name by davester666 · · Score: 1

      Yes, the GP needs to have someone hit him in the head with a stick after saying the name 5 times. And maybe repeat the whole process until he can't say the name 5 times in a row anymore.

      --
      Sleep your way to a whiter smile...date a dentist!
  2. Why is this cr@p on the front page? by Anonymous Coward · · Score: 1

    Nice work, dice holdings, you are continuously degrading /.

    1. Re:Why is this cr@p on the front page? by danceswithtrees · · Score: 5, Informative

      I was thinking pretty much the same. This is a computer controlled, USB RGB LED (triplet of TLAs!). You can get a Tiva Launchpad from TI preassembled with RGB LED (surprisingly bright BTW) for $13 including shipping. The 15 GBP is about $25 and 10 GBP is $16 in comparison-- I don't know if shipping included in price. Granted the Blinkstick is in a smaller form factor that plugs in directly but the Launchpad has a ARM Cortex processor, GPIO, ADC, UART, USB, etc on it which you can use for other things should you tire of the notification light thing.

    2. Re:Why is this cr@p on the front page? by zAPPzAPP · · Score: 1

      Hey, my first project with a microprocessor was also to make an LED blink.
      This guy is off to a good start!

    3. Re:Why is this cr@p on the front page? by egcagrac0 · · Score: 1

      This is a computer controlled, USB RGB LED (triplet of TLAs!).

      Not only that, the PCB seems to be almost entirely PTH instead of SMT - perfect for the DIY market!

    4. Re:Why is this cr@p on the front page? by egcagrac0 · · Score: 1

      Ooops... not PTH, but THT.

  3. Arduino by Saethan · · Score: 1

    More fun to grab an Arduino and a small alphanumeric LCD to read out statuses to you, I say. :P

  4. Design by benjfowler · · Score: 4, Interesting

    Impressively tiny device. Had no idea that it was possible to build a device that interfaces to USB in so few components (it does USB in software on a tiny microcontroller, and the firmware is around 1kb in size...)

    The instructions look easier than falling off a log.

    Question for anybody who knows: would it be possible to generalize this design to drive an array, of -- say -- 10 or 20 RGB LEDs ? This would be a lot more useful for me, as then, I could rig my server case with a string of LEDs to tell the status of all my hard drives, network, load (amongst other things).

    1. Re:Design by Anonymous Coward · · Score: 1

      Did you not see the USB hub that he was using with different notifications?

    2. Re:Design by benjfowler · · Score: 1

      I did.

      I'm not sure if daisy-chaining a bunch of USB hubs to get a few LEDs going is necessarily the most elegant way of solving this problem though.

    3. Re:Design by bob_super · · Score: 1

      I recommend that you link a couple million LEDs, just in case you need more info. But if you do that, the USB port might not be happy, so you should fall back on the displayport one instead, since it's about the same size.
      I've got that thing with a big LED or laser for you to plug into the USB in the meantime, you can use it to rest your hand.

    4. Re:Design by danceswithtrees · · Score: 1

      Brian Schmalz has a USB controlled "bit-banging" dev board called the Bit-Whacker. It has 78 IO pins! You can pick one up for $40 at Sparkfun (https://www.sparkfun.com/products/9713).

    5. Re:Design by ackthpt · · Score: 1

      How about just enough to do your own Blinkenlights?

      --

      A feeling of having made the same mistake before: Deja Foobar
    6. Re:Design by AmiMoJo · · Score: 1

      Changing to a micro with more I/O pins would be possible, or better still adding an LED driver chip with shift register so you can have arbitrary length strings.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    7. Re:Design by Hal_Porter · · Score: 2

      Had no idea that it was possible to build a device that interfaces to USB in so few components (it does USB in software on a tiny microcontroller, and the firmware is around 1kb in size...)

      That's the genius of USB really. Most early USB devices probably had a Serial Interface engine in hardware and a few hundred bytes of firmware written in assembler in flash or masked prom.

      This device is actually quite high end

      http://www.atmel.com/devices/attiny85.aspx

      http://www.atmel.com/Images/Atmel-2586-AVR-8-bit-Microcontroller-ATtiny25-ATtiny45-ATtiny85_Datasheet.pdf

      You've got 8KB of flash. You can program it in C and you get a USB driver.

      http://www.blinkstick.com/help/firmware

      Looking at the firmware main.cpp it implements HID class device. Writing to reportId 1 means you set the 3 PWM oscillators for red, green and blue leds. The other reportIds seem to read and write the EEPROM.

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    8. Re:Design by thegarbz · · Score: 1

      How many components? All you need for USB communication is to get the line levels right (mostly through the use of external resistors and diodes), and have a micro-controller capable of talking at speeds fast enough that the computer doesn't think the device dropped off. USB1.1 is very easy to emulate in software on most microcontrollers 12MHz or greater.

      Microcontrollers with hardware USB controllers built into them start at around $2 and have the clamping taken care of so only 2 resistors are needed to get them going. They are also capable of full speed USB2.0 thanks to internal PLLs giving them some phenomenal internal clock rate.

    9. Re:Design by viperidaenz · · Score: 3, Interesting

      You don't need any microcontroller to do this.
      Attach an FTDI FT232 chip to the USB port and although its designed an a USB to UART chip it can be configured for GPIO.

    10. Re:Design by ceoyoyo · · Score: 1

      That sounds silly. You can "do USB" in a single chip much simpler than a microcontroller. Probably faster and more reliable too.

    11. Re:Design by ceoyoyo · · Score: 1

      That's stupid. If you just want to make a light blink with an LED use a USB port use a USB decoder. That's what they're for.

    12. Re:Design by LWATCDR · · Score: 1

      Here you go http://www.obdev.at/products/vusb/index.html
      vusb is a USB stack for the AVR line of chips. They even have a diagram of how to wire it up. You could also just use any number of micros that come with a USB interface.
      As to the number of parts needed to blink an LED using the USB port... You could do it really simply with this http://www.ftdichip.com/Products/ICs/FT232R.htm

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    13. Re:Design by Hal_Porter · · Score: 3, Interesting

      Actually if you fig a bit deeper there is something interesting about this project. Look at the USB stack - it's all done in software using GPIO pins! Very clever. There's a company that wrote the USB stack. You can get it GPL licensed for free or you can pay for a BSD license, but they start real cheap

      http://www.obdev.at/products/vusb/license.html

      They've got a load of projects too

      http://www.obdev.at/products/vusb/prjobdev.html

      If you go above 10,000 units you probably pay more but by that point you can afford it.

      Very interesting mix of clever code and a well thought out business model I think.

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
  5. Insensitive clod! by srussia · · Score: 1

    I've got an iMac... and to add insult to injury, Growl got installed somehow.

    --
    Set your phasers on "funky"!
  6. Old idea by GeorgeHahn · · Score: 2

    Blink(1)
    I'm all for people building things, but if you just want a polished notification LED for your computer, go to the original creators.

    1. Re:Old idea by bobbied · · Score: 1

      How about going for simple and cheap... Write a program that pops a dialog box on your screen when you need to be notified about something..

      --
      "File to fit, pound to insert, paint to match" - Aircraft Maintenance 101
    2. Re:Old idea by ColdWetDog · · Score: 2

      Actually this little device solves a problem we are having with our new, stupider, Electronic Health Record. The old one would tell lab and xray that a stat order was up by triggering the speaker (lab has it set to the Star Trek Klaxxon sound which gets a tad old, but it's their department). This could just light up at the central computer on a trigger.

      You would be surprised how useful stupid things like this can be. Yeah, I can rig an Arduno to do this, but I'm kinda time contstrainted. I can solder the thing together and whack on the keyboard for an hour - that's reasonable and for $30, a steal. The EHR vendor is 'thinking' about putting the functionality back in. This usually means they want to be bribed some more. They charge way more than $30.

      --
      Faster! Faster! Faster would be better!
    3. Re:Old idea by ceoyoyo · · Score: 1

      You'd have to write software to make the light blink, and since it's hardware you'd have to deal with a driver of some sort. I would be much easier for you to just write software that plays a sound over the speakers.

    4. Re:Old idea by wonkey_monkey · · Score: 1

      I can ... whack on the keyboard for an hour

      Not on the hospital's time, pal.

      --
      systemd is Roko's Basilisk.
    5. Re:Old idea by ssam · · Score: 1

      I have wanted a blink(1) for a while, but the price is very high for what it is. Then add in shipping to the UK, import tax and handling fees.

      BlinkStick is cheaper, though you loose the nice plastic enclosure.

  7. Re:Hello World by benjfowler · · Score: 1

    It wasn't obvious to me how to get that LED talking USB over that microcontroller.

    That said, £15 does seem a lot, when far more capable Arduino kits are selling at Maplin for not much more. But probably reasonable if they're amortizing their costs over only a few units.

  8. Re:Scolllock and Numlock by mythosaz · · Score: 4, Insightful

    All of the *lock keys are mostly useless. Plenty of people (myself included) have remapped our Caps Lock key to TAB. The number of times I've wanted Caps Lock has greatly outweighed the number of times I've sit hitting it 1-2-3 times making sure it's not toggled wrong. Ditto for Scroll Lock. The number of times I've wanted it on versus the number of times I've said, "Hey, why isn't that scrolling right?!?"

    Using those keyboard lights for notifications is OLD NEWS. We've been doing it forever... ...for about £15 less than the £15 in the slashvertisement.

  9. Re:Scolllock and Numlock by bobbied · · Score: 1

    Heck, just popup a dialog box from a program and skip all this USB to LED flashy stuff. Shesh..

    --
    "File to fit, pound to insert, paint to match" - Aircraft Maintenance 101
  10. Longer strings by Animats · · Score: 1

    would it be possible to generalize this design to drive an array, of -- say -- 10 or 20 RGB LEDs ?

    Sure. Addressable LED strings are cheap, and widely used for annoying blinking holiday decorations. If you don't want to solder, here's an assembled USB light string controller.

  11. Re:Why not just blink... by bobbied · · Score: 1, Insightful

    OR.. Brace yourself.... Write a program that pops a dialog box... You can do it for free, no hardware, soldering irons or USB port required.

    --
    "File to fit, pound to insert, paint to match" - Aircraft Maintenance 101
  12. Re:Why not just blink... by Anonymous Coward · · Score: 1

    This.

    I've been using the keyboard LEDs for notifications since the DOS days. Nowadays some people even have an actual screen built into their keyboards. You could also use your second display, phone or tablet for notifications and failing all of that, just have a small pop-up/toast appear in a corner of the screen or on the task bar/system tray.

    This project is stupid. Nobody is going to want to put together some big ass (it is HUGE for what little it does), ugly circuit board and waste a perfectly good USB port.

  13. Quaint by mugnyte · · Score: 3, Funny

    Next up, a circuit to ring a bell when someone calls your phone.

  14. Did you spin around? by Runaway1956 · · Score: 1

    Spin around three times, widdershin, while standing in front of the mirror. It may help if there happens to be a Satanic mass in progress - or not. YMMV

    --
    "Windows is like the faint smell of piss in a subway: it's there, and there's nothing you can do about it." - Charlie Br
  15. Re:Looks useless by CanHasDIY · · Score: 1

    Oh, it's a 10(british-pound) indicator LED.

    ..,. made from less than 5 PetroDollars worth of parts.

    Butbutbut... HID firmware on an AtTiny85!

    Yea, not impressed. Been there, done that, got the t-shirt.

    --
    An enigma, wrapped in a riddle, shrouded in bacon and cheese
  16. Oh the Baltic names by Freultwah · · Score: 1

    Arr-VEE-dus You-SKAY-vee-chews. Not that difficult to repeat five times in a row even after a 10% Belgian quadrupel. What's the prize?

    1. Re:Oh the Baltic names by Bucc5062 · · Score: 1

      I had to take a moment and look this up Quadrupel as I had no idea what that was when I read it.

      You can say that name 5 times after one of those? I tip my hat sir, well done. Now where can I find that fine brew, is my question.

      --
      Life is a great ride, the vehicle doesn't matter
  17. Nice. by Anonymous Coward · · Score: 1

    So someone does something a bit cool and the first thing Slashdot can do is take the piss of his his foreign name.

    1. Re:Nice. by NoMaster · · Score: 1

      "So someone gets a slashvertisment on the front page and the first thing Slashdot can do is take the piss of his his foreign name."

      FTFY.

      SMD (If you can solder DIL & through hole parts you can solder SOIC & 1206 surface mount) would make that thing 1/3 of the size, allow you to have 3 (e.g. red, yellow, & green) or more LEDs, and might make it worth the asking price.

      Or, for the same price or less, you could build a USB 2x16 or 2x20 LCD display.

      --
      What part of "a well regulated militia" do you not understand?
    2. Re:Nice. by jones_supa · · Score: 1

      So someone does something a bit cool and the first thing Slashdot can do is take the piss of his his foreign name.

      I though it was kind of rude too.

  18. Or just use the proper thing for the job ... by Anonymous Coward · · Score: 2, Informative

    ... which is something like http://www.ck3.co.uk/minimus-32-avr-atmel-atmega32u2-usb-dev-board.html, which does USB in hardware, has 2 LEDs already on board and only costs £6.00, or as little as £3.50 if you buy in bulk. Plus you can emulate pretty much any USB device you want - I've used one to drive a whole set of RGB LEDs by mimicking a MIDI output device and mapping notes to colours.

    £15 quid for a single LED driven by an inappropriate microcontroller? About the dumbest thing I've heard in a while.

    1. Re:Or just use the proper thing for the job ... by benjfowler · · Score: 1

      This is JUST the ticket. Awesome, thanks!

    2. Re:Or just use the proper thing for the job ... by mirix · · Score: 1

      Yep, the AVRs with hardware USB, like the 32U2, coupled with the lovely open source LUFA usb library, make it painfully easy. I like to make things show up as serial ports.

      Though these days I've been using ARM cortex M3 (STM32) with the GPL libopencm3, as the tiny stm32's with hardware USB are cheaper and have more, well, everything. Kind overkill for blinking a couple LEDs, though.

      Anyone paying $15 for $2 of parts is a sucker. Seems to be a lot of suckers in the DIY crowd, these days.

      --
      Sent from my PDP-11
  19. Re:Scolllock and Numlock by strength_of_10_men · · Score: 1, Insightful

    We get it. You think it's a better idea to do this with software. That's fine and there are no shortage of such programs.

    But what about when I'm playing a game in full screen? (as mentioned in the article). What if the monitor's gone to sleep? What if I'm listening to music with the monitor off?

    Just because there's another way to do this doesn't mean this do-hickey isn't useful.

  20. DevCon.exe and a red-glowing USB mouse by GrangerX · · Score: 3, Interesting

    I made a top-of-the-cubicle LED indicator using Devcon.exe and a Microsoft Mouse that happened to glow red when it was receiving USB power once.

    I basically had devcon.exe 'enable' the mouse when it was ready to indicate something and 'disable' it otherwise.

    Worked reasonably well, but that was back before I got all the notifications on the smartphone anyway.

    1. Re:DevCon.exe and a red-glowing USB mouse by aaronb1138 · · Score: 1

      Not digging this device, and especially not the Arduino fans trying to pimp an even more expensive variation. I'm all for kit electronics, but e-mail / smartphone notifications are the way to go for computer notifications remotely. And the comms down argument against fails if you setup some form of heartbeat system. As for the Arduino is the bestest crowd... ummm, your community is already well aware of how to wire in notification LEDs to the kit.

    2. Re:DevCon.exe and a red-glowing USB mouse by jones_supa · · Score: 1

      Ha! Pretty clever actually. That has the additional benefit that the USB device is not using any power as it is turned completely off.

    3. Re:DevCon.exe and a red-glowing USB mouse by wonkey_monkey · · Score: 1

      I'm all for kit electronics, but e-mail / smartphone notifications are the way to go for computer notifications remotely.

      Everyone is not you. There are plenty of reasons not to have your phone connected 24/7. For that matter, there are plenty of people who don't own smart enough phones.

      --
      systemd is Roko's Basilisk.
  21. Re:This is an advertorial, right? by BronsCon · · Score: 1

    A) Posting as AC only hides you from other users
    B) Our friends at dice.com surely record the IP address from which every post was made
    C) Probably banned anyway
    D) You're 100% correct, otherwise.

    --
    APK quotes people (including myself) without context and should not be trusted. Just thought you should know.
  22. What's new about this? by HoldenCaulfield · · Score: 2

    There was a kickstarter, blink(1) a little over a year ago that did the same thing - http://stackexchange.com/leagues/1/year/stackoverflow/2013-01-01/759517#759517 (and in a nicer package).

    I wanted something similar (visual cues for meeting reminders; my "email" system is on a KVM with other "dev" systems). I ended up getting the Dream Cheeky 815 USB Webmail Notifier (http://www.dreamcheeky.com/webmail-notifier) - the thing is designed for email notifications with webmail, but there's an Apache License 2.0 driver and helper app (http://dreamcheekyusb.codeplex.com/), which worked fine to drive the thing - the little command line app that uses the driver had enough functionality (gradual on, color change, and blink) that I didn't need to write any real code.

    A little macro scripting, and it was working fine with Outlook.

    A little bigger that the other solutions, so maybe not great for a rack (though it's probably about 1U so it would work fine), but works nice sitting on my desk under my displays . . .

    1. Re:What's new about this? by HoldenCaulfield · · Score: 2

      Argh, correct link for the blink(1) Kickstarter - http://www.kickstarter.com/projects/thingm/blink1-the-usb-rgb-led

      Purchase link: http://buy.thingm.com/blink1 (out of stock, was $30)

      The BlinkStick mentioned in the original is $16

      The Dream Cheeky was $10 (I think I paid 9 on a woot sale)

  23. Not the product we need. by PsychoSlashDot · · Score: 1

    How about something similar that perhaps goes into the headphones jack of a cell phone to add LED notification to THAT?

    Blackberry got it right and while a smattering of other phones include notification LEDs, it's very rare. If such a device could be powered through the headphone jack (no idea if there's enough current... IANAEE) and a little helper application for Android/iOS was written, I'd spend big bucks for such an add-on.

    --
    "Oh no... he found the .sig setting."
    1. Re:Not the product we need. by LinuxIsGarbage · · Score: 1

      How about something similar that perhaps goes into the headphones jack of a cell phone to add LED notification to THAT?

      Blackberry got it right and while a smattering of other phones include notification LEDs, it's very rare.

      Nexus One, Nexus S, Galaxy Nexus, Nexus 4, Nexus 5, Galaxy SIII, S4 are popular phones that include it.

    2. Re:Not the product we need. by PsychoSlashDot · · Score: 1

      Nexus One, Nexus S, Galaxy Nexus, Nexus 4, Nexus 5, Galaxy SIII, S4 are popular phones that include it.

      Right. So almost none, which was my point. Galaxy Note series, and pretty much every other phone on the market that isn't a Blackberry doesn't. Brand new releases don't, showing that it's not just some magic innovation that needed time to be discovered.

      I'm convinced Blackberry owns some patents on notification LEDs and other manufacturers can't generally be bothered to license them.

      --
      "Oh no... he found the .sig setting."
  24. It's pretty silly you think about it. by VortexCortex · · Score: 3, Informative

    Modern connection interfaces are complex enough that you need an IC to negotiate a connection before you can even get a LED blinking. Today's systems aren't exactly designed for hobbyists to build things.

    Get an old beige box. You can solder a resistor and LED to the DTR pin of a serial port, and program it with a couple lines of assembly -- Oop, nope. The modern OSs aren't really designed for hobbyists to build things either. You'll be learning how to write a kernel driver for your OS if you use Linux. This is why I still use and make small DOS-esque OSs -- It's quite easy using BIOS interrupts. Also, you can still install DOS on nearly all x86-64 systems...

    Data Terminal Ready is just one pin, but with it and the RxD / TxD pins you can build a simple lock-step electronic coms project on a serial port -- So you don't have to implement the whole RS232 chipset just to do a little manual IO. Parallel ports have many more such pins to play with, and don't require serialization either. That's why I teach kids to make robotics with DOS like OSs on my spare "junk" -- Because it's so much faster, cheaper, and easier than with USB, or even RS232 serializing and deserializing state -- Save that for when they get a bit more skilled. There's something almost magical to watching bits flip in memory by making and breaking electrical contacts; Folks immediately start thinking up ways to use such a thing. It's fun watching the scales fall from their eyes as kids realize computers aren't impenetrable black boxes full of voodoo. It's kind of funny that you have to buy a kit with ICs to make more transparent the interface provided by making and breaking pins on older hardware.

    In my experience, once you get past a couple of LEDs or controlling higher voltage switches via contactors, etc. the next stop usually isn't a notification app for your system -- It's a breadboard full of gizmos, or using your PC to control your other gadgets.

    Eg: Readers who liked TFA also liked LIRC.
    (swap the LED with IR-LED, and control your home theater setup)

    1. Re:It's pretty silly you think about it. by jones_supa · · Score: 1

      You can also use a serial/parallel port USB adapter to achieve this on a modern PC.

    2. Re:It's pretty silly you think about it. by Anonymous Coward · · Score: 1

      Agreed to the title and the first paragraph.

      I once needed a way to create a sound that would not go thru the soundcard (and the attached headphone).

      The solution was to connect a piezo-buzzer in series with a capacitor to the TXD of a serial port. Set the baudrate to twice the desired frequency, send a couple of 0x55s and presto.

      Yep, having "dumb" hardware available does make life easier.

  25. Re:Scolllock and Numlock by AmiMoJo · · Score: 1

    Many keyboards don't have LEDs any more because they are wireless. LEDs would quickly kill the batteries. I know many here prefer a wired Model M but it's nice to be able to just move the keyboard out of the way sometimes, and my arthritic fingers prefer low impact low travel MS/Lenovo keyboards.

    Scroll Lock is useful for breaking out of VMs. The Num Lock key pisses me off because I never, ever want the numeric keyboard not to be numeric.

    My boss hates caps lock so much he immediately rips it off every keyboard he gets. I think I might start doing the same thing with Num Lock. I wish they made keyboards with an underscore key.

    --
    const int one = 65536; (Silvermoon, Texture.cs)
    SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
  26. PC Problem? by pubwvj · · Score: 2

    Is this a Windoze problem?

    Macs already have this functionality built in to notifications.

  27. Re:Slashvertisement by nospam007 · · Score: 1

    "I can definitely see how this advertisement, that a good deal of the population here can make on their own or with a little reading, deserves the front page."

    My email reader and other apps have a trillion ways to get my attention without me soldering a hardware msgbox().

  28. Re:Scolllock and Numlock by mythosaz · · Score: 1

    In that case, I suggest a used second keyboard, for about $2, complete with LEDs taped to the top of your monitor. :)

  29. Re:Scolllock and Numlock by war4peace · · Score: 1

    Cheaper solution: get an USB stick with a LED, write an app which would read files from your memory stick on trigger, enjoy a cheaper AND more useful device which does the same thing.

    --
    ...gis sdrawkcab (usually not responding to ACs; don't bother posting as AC)
  30. Classic science fiction by pgpalmer · · Score: 2

    When watching science fiction made a few decades ago, one thing that bothered me was that the technology had a lot of fancy LEDs/bulbs that flashed but apparently did nothing else.

    See any console on the original Star Trek, or Al's handheld during the first season of Quantum Leap.

    But now it makes total sense. They were notification LEDs! Notifying about EVERYTHING!

    1. Re:Classic science fiction by istartedi · · Score: 3, Interesting

      That's my thought. If I've got time and money to burn, and I'm going to fire up the soldering iron, I want a wall full of blinking lights that signify... ummm... that the FUTURE has arrived. Yes, see? That green one there? It means we're in the future. The red one? When it starts blinking, you're time is running out...

      It's funny that this should come up because just now I was in a fast food Chinese place by myself. I was watching people, and there were these two middle-school aged kids with smart phone splaying games or something. I was thinking, these kids have never known a time when tiny little computers were not everywhere. When I was a kid, we thought a home computer would be a wall full of blinking lights.

      --
      For all intensive purposes, "whom" is no longer a word. That begs the question, "who cares"?
  31. USB Email Notifier by Anonymous Coward · · Score: 1

    I've used inexpensive USB email notification devices for applications like this. They're cheap, have a bright RGB LED inside, and the protocol has been reverse-engineered already. Here's a $8 device with free shipping that includes both a controllable LED and a USB hub. That's tough to beat for the money.

    http://www.ebay.com/itm/4-Port-HUB-USB2-0-Webmail-E-mail-Notifier-for-PC-Laptop-/360683701882?pt=US_USB_Cables_Hubs_Adapters&hash=item53fa6c867a

    These are easy to setup under Linux to indicate whatever you want, or even on OpenWrt to indicate WAN down or .

  32. Simple Microcontroller Blinky Designs by billstewart · · Score: 2

    In this case it's an Atmel atTiny85 instead of a PIC chip, and a tri-color RGB LED instead of three separate LEDs, but yeah, it's not all that complex. It also has a printed circuit board, not particularly complex, and yes, you could build it yourself on breadboard. You could also snark about how Arduinos cost ~$30 when they only have
    You could also buy a Digispark for ~$9 which has a Tiny85 and a voltage regulator, and breaks out the pins for convenient access, with room for headers so you can build the equivalent of an Arduino shield. Instead of a USB socket, it uses the trick of printing traces on the PCB in a layout that acts as a USB Type A plug, so it's more compact and doesn't need a wire.

    Or you could spend ~$8 for an Adafruit Trinket and add an LED; it may be a shade less convenient than the Digispark just because they put the connectors on two sides of the board instead of one (so it's harder to use an RGB LED, but you could put it on the back of the board.)

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  33. Keyboard has single-color LEDs, not RGB by billstewart · · Score: 2

    I don't know about you, but the only time I notice the LEDs on my keyboard are when something's wrong (e.g. everything's frozen, and I look at the disk LED to see that it's just the disk busy again), and they're not very bright. This has a brighter RGB LED that gives you a wide range of colours. In practice, no, I wouldn't bother using one of these things on my laptop, because it's physically awkward; might be fun to build something like this for a desktop machine, I suppose. (OTOH, the next desktop machine I'm likely to build would be a Raspberry Pi, which has its own support for this kind of thing, and the LED could be useful because the box itself would be jammed behind the TV.)

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  34. Re:Make the LED on my monitor blink by jones_supa · · Score: 1

    They are connected in series so you cannot control individual ones.

  35. Re:Hello World by jones_supa · · Score: 1

    Getting a microcontroller to blink is the digital hardware equivalent of hello world. This is painfully stupid and I hope people don't buy into it. It's one thing to sell a kit and have an informational DIY blog, it's another to market this shit as an actual product.

    The attention span of hackers these days is so short that they make something extremely simple (and completely unimaginative) like this and productize it already. Just like the punch yourself in the face game. Sad.

  36. Re:Scolllock and Numlock by jones_supa · · Score: 1

    Many keyboards don't have LEDs any more because they are wireless.

    That could be solved mechanically. For each LED, have instead a tiny window behind which you put some flap which is other side red, other side black. Then you just flip this flap when the state of the lock is changed.

  37. thingm blink(1) by grouchomarxist · · Score: 2

    Thingm has a similar series of products called blink(1). It runs for about $30, but it is not widely available now. They recently finished .

  38. Re:Scolllock and Numlock by wonkey_monkey · · Score: 1

    For each LED, have instead a tiny window behind which you put some flap which is other side red, other side black.

    I work exclusively in blue light, you insensitive clod!

    Adding moving parts to what was previously an entirely solid-state device running on batteries. What could possibly go wrong?

    High contrast e-paper, on the other hand...

    --
    systemd is Roko's Basilisk.
  39. It's a little on the big side... by wonkey_monkey · · Score: 1

    Considering how small Bluetooth adapters can be, this is a little on the chunky side.

    --
    systemd is Roko's Basilisk.
  40. Re:Useless by wonkey_monkey · · Score: 1

    That's why they made soundcards

    There are myriad sensible reasons why one might not want their soundcard on.

    and also the system tray can hold notifications.

    Besides the obvious situation of when your monitor is off, did you even read what you quoted?

    or to tell you that you have a message from one app while another is at full-screen

    The systray is no good in that situation, is it?

    --
    systemd is Roko's Basilisk.
  41. And the transformation is complete! by cascadingstylesheet · · Score: 1
    And the transformation of your desktop into a dumb "smart" phone is complete!

    Now that your screen is dominated by huge "apps", I guess you need someplace for notifications ...

  42. I like lights by bobjr94 · · Score: 2

    I remember back in the old days, maybe before 1996 or so, hard drives each had their own led header pins. I had 3 or 4 drives in my computer with 3 or 4 hdd led's in my front panel. No real purpose, just liked them, much like these. By the late 90's none of the drives came with them anymore, sad days, just one motherboard driven light for all the drives.

  43. Re:Scolllock and Numlock by toddestan · · Score: 1

    I'm actually surprised a bit that wireless keyboards don't include a small LCD that indicates the status of the lock keys, since that would require almost no power. You still wouldn't be able to see it in the dark (though if I was to get fancy I would put a backlight in that toggles for a few seconds when one of the lock keys is pushed). Then again, few people I know use a wireless keyboard on a regular desktop set up anyway, as it's generally just an inconvenience.