Monday, June 6, 2011

The Windows 8 demo

The video below was released on Wednesday evening to coincide with Windows President Steven Sinofsky offering the first public demo of Windows 8 at the All Things Digital conference (a.k.a. D9). In this video, Jensen Harris, director of program management for the Windows User Experience, provides a quick walk-through and promises that more video demos will be coming soon.


Friday, May 27, 2011

Google Wallet Product Launch


Payments, offers, loyalty, and so much more

Google Wallet has been designed for an open commerce ecosystem. It will eventually hold many if not all of the cards you keep in your leather wallet today. And because Google Wallet is a mobile app, it will be able to do more than a regular wallet ever could, like storing thousands of payment cards and Google Offers but without the bulk. Eventually your loyalty cards, gift cards, receipts, boarding passes, tickets, even your keys will be seamlessly synced to your Google Wallet. And every offer and loyalty point will be redeemed automatically with a single tap via NFC.

Friday, May 20, 2011

Sony Flexible Color e-Paper 3D LCD

We saw some fancy panels and flashy lights on the show floor at SID this week, but Sony decided to keep its latest display offerings tucked away in an academic meeting. We're getting word today from Tech-On! that the outfit unveiled a 13.3-inch sheet of flexible color e-paper as well as two new glasses-free 3D panels in a separate session at the conference. New e-paper solutions loomed large at SID, but we were surprised by the lack of flexible screens. Sony's managed to deliver both on a display that weighs only 20 grams and measures a mere 150-microns thick, a feat made possible by the use of a plastic substrate. The sheet boasts a 13-percent color gamut, 10:1 contrast ratio, and 150dpi resolution.

As for the 3D LCD displays, Sony joined a slew of other manufacturers in showing off its special brand of the panels. These new displays, ranging from 10-inches to 23-inches, apparently employ a new method for delivering 3D to the naked eye. This particular method uses a backlight positioned between an LCD panel and another backlight for 2D images, and can be easily be switched off for 2D viewing. Of course we would have liked to see these screens in the flesh, but alas, Sony decided to play coy. Hop on past the break for a shot of the new 3D panel.

Thursday, May 19, 2011

Are you ready for Super Hi-Vision after HDTV ?


Sharp and NHK are showing off the world’s first Super Hi-Vision display, pointing the way to a future where high definition TV will be many times sharper than the HDTV we’re familiar with today.

This 85-inch prototype screen was jointly developed by Sharp Corporation and Japan Broadcasting Corporation (NHK), finally creating a monitor that can display the jaw-dropping ultra-high definition of the Super Hi-Vision format NHK has been working on since 1995.

How high is this Super Hi-Vision’s definition? To give you an idea, today’s HDTV resolution lets you recognize faces in the crowd, where Super Hi-Vision will allow you to determine whether the pupils in the eyes of one of those faces are dilated. I’ve seen a screen with just half this resolution, and even that is astonishing.

By the numbers, according to Sharp, the TV’s resolution is 16 times higher than a conventional HDTV, with a 33-megapixel screen made up of 7,680 x 4,320 pixels. Compare that with the relatively measly 1,920 x 1,080 pixels of the HDTV we are all so fond of, and you’ll agree that we’re in for a treat.

A Tweeting .NET Micro Framework Breathalyzer

This project shows how you can use the Netduino Plus to make a tweeting breathalyzer—a standalone breathalyzer that can post messages about the detected alcohol level to Twitter, using an inexpensive alcohol gas sensor.

The Netduino is an open source electronics platform based on a 32-bit microcontroller running the .NET Micro Framework. The Netduino Plus is similar to the original Netduino, but adds a built-in Ethernet controller and MicroSD slot. Since the Netduino Plus can connect directly to a network, it can independently communicate with Twitter’s API without being connected to a computer.

Hardware Overview

Img0058

The MakerShield is a simple prototyping shield that is compatible with the standard Arduino and Netduino boards.

In this configuration, the MQ-3 alcohol gas sensor will output an analog voltage between 0 and 3.3V to indicate the amount of alcohol detected. This output will be connected to one of the Netduino’s analog input pins and read by its ADC.

While it would possible to convert the sensor’s output to a numeric BAC level, this would require careful calibration and would be prone to error. For this project, I will use approximate value ranges to determine which of several messages should be posted to Twitter. An approximate reading will be displayed on an RGB LED.

RGB LED

The RGB LED is the primary status indicator. During normal operation, it shows the level of alcohol, represented by colors ranging from green to red.

Three transistors are used to provide power to the RGB LED. The microcontroller used on the Netduino has a relatively low current limit per IO pin (around 8 mA for most pins) so it is generally not advised to drive LEDs (which can require 20-30 mA) directly from these pins. Using a transistor (or another LED driver) helps ensure that enough power will be made available to each LED without damaging the Netduino.

This page shows some common transistor circuits, including a few "transistor as a switch" circuits. Since the RGB LED I am using has a common cathode (low side) lead, I am using PNP transistors to switch the anode (high side) of each color.

Read more