2010-03-17

Wii Fit

Upplagd av Morvarid

this is the new gametrailer of wii fit. Love it!

2010-03-11

Perspektiv pixel

Upplagd av Alex

This video is about different projects that have develops in US the arranger of this event is the technology Federal Chief Technology Officer of the United States. The company that kind was interesting for me was “Perspective Pixel” who working and developing big touch screens for different purposes. Jeff Han who doing the presentation is talking the big step between touch screens and mouse but the hard part is to find wear to apply just for play or cloud it be more useful for other stuff professionally. As he was taking about the simplicity in interaction it didn’t seemed to be because you can apply many gestures to do different stuff. There are not many touch standards for touch gestures.

Look at the video conference 34:00 in time

Look also at their website at Perspective Pixel The intro video shows what touch screens are good for

Timer

Upplagd av ccon

Here is an interesting way to do a simple task such as having a timer turning on and of a lamp.

Misa Digital Guitar

Upplagd av ccon

Here is a nice midi-controller with a lot of potential!

It is basically a LOT of buttons, a touchscreen and a computer.



Seems useful and would be an interesting project to try to replicate.

En annan intreaktions skål

Upplagd av Alex

I found an interesting bowl that kind of plays orchestra of went you mix small objects in it. It would you could also apply that in the kitchen when you making dinner. So making dinner would not be so boring and you can pretend that you are director for a while with a mixer.

Orchestra bowl



2010-03-10

Link collection

Upplagd av Sotiris

During the course I came across lots of cool ideas and my bookmark folder got full of interesting things. Time to share them.

Enjoy :)

LED throwies
Paint the city in LEDs : http://www.instructables.com/id/LED-Throwies/



LED throwies - computerized version
Computerize the throwie : http://c2.com/cybords/?ComputerizedThrowie



LED floaties
Throwies that can float : http://www.instructables.com/id/LED-Floaties/




Laser Tag Show @ Rotterdam
Mobile laser shows, the new graffiti style : http://muonics.net/blog/index.php?postid=15



United Visual Artists
A coalition of artists that do nice things : http://www.uva.co.uk/




Interactive LED Table
Another idea for an interactive table : http://www.instructables.com/id/Interactive-LED-table/




The social lamp
How to create a lamp that reflects the amount of people around it : http://www.instructables.com/id/Concept-Studies/




Table for electronic dreams
Tables redefined : http://www.instructables.com/id/Table-for-Electronic-Dreams/




LED Table
I want that : http://www.evilmadscientist.com/article.php/diningtablecircuit




Punch-It-Out
Hit me baby : http://www.instructables.com/id/The-Punchout-Interactive-Interface-Improved/




Stackable Light Cube
I definitely want that ! And it's easy too ! http://www.instructables.com/id/Stackable_Ambient_RGB_LED_Cube_Lights/




Digital LED Flower
Back to the (digitized) nature : http://www.instructables.com/id/Digital-LED-Flower/




Milk lights
Easy to do light fixtures: http://www.instructables.com/id/Milk-Bottle-LED-Lights-Arduino-Controlled/


Ok, time to create something with LEDs !!!

2010-03-09

Avatar augumented reality demo

Upplagd av Axel

This is a nice example of how to implement augumented reality to promote a movie.

To make people interact with the caracters of the movie. This could easily be developed into a game where people playing with the caracters against each other.

Spinning LED Ball

Upplagd av Axel

This is a really nice interaction between music and LED lights. Amazing how many different patterns this thing kan create.

Great thing to have at parties!

I was asked to write a small guide about how to connect the Wii remote with the computer and how to access all the sensors and buttons.

There are one problem a lot of people find when they try to use the Wii Remote with the computer. The problem is the so called Bluetooth Stack.. Easily explained it is the software the Bluetooth device uses to connect with the rest of the computer. It is what makes it possible to read and write to a Bluetooth device.

Different Bluetooth devices might use different preferred stacks. There are different kinds of stacks. The most common are called BlueSoleil, Widcomm and the default Windows Stack.

Some API:s only work with a single stack and that makes it hard for programmers to access the Wii Remote, especially when the Bluetooth stack your Bluetooth Dongle work with seems kind of random and hard to find out when you buy it.

For me the default Windows Bluetooth Stack worked good with my laptops integrated bluetooth card, but most people won't be so lucky and may have to try different stacks och buy different dongles. There are however lots of information about this on the web and Google will make your life easier.

Okey.. Now if you have got the correct Bluetooth stack up and running, we can move on.

Since I used the default Windows Bluetooth stack I'll tell you how to pair the Wii Remote with your computer using that.

This is how I do it:
1. Locate the Bluetooth icon in the taskbar.
2. Right click and select "Add Bluetooth Device"
3. Now press and hold the "1" and "2" buttons. Keep holding until I tell you to let go.
4. Check the "My device is set up and ready.." box and click next.
5. Select the device that called something with nintendo, wii or remote.
6. Click next.
7. When you receive a message that the device was added successfully and is ready to be used, you can let go of the "1" and "2" buttons and celebrate because you are now ready to access it with your API.

I tried two different ways of programming for the Wii Remote:

A - GlovePIE
B - WiiFlash

A - GlovePIE http://glovepie.org
or Glove Programmable Input Emulator is a program that emulates different input devices. It works with lots of different input devices, everything from the Playstation SixAxis and the Wii Remote to MIDI controllers and head trackers.

What it does is basically map a input device to a other output device. You can use the Playstation SixAxis as a mouse or Wii Remote as a MIDI controller to controll your favorite music software. So.. You can use any input device to simulate another device.

With this software you can access all the values from the accelerometers, buttons and the IR camera on the Wii Remote.

B - WiiFlash http://wiiflash.bytearray.org/
This is the API we used in our demo. It consists of two parts:

1 - A socket server accessible from Flash
2 - An API used to connect to the server and access all the different values.

The socket server is needed because flash can't access Bluetooth devices directly and is a plug-n-play program.. No configuration needed.

The API is really straight forward and it is really easy to access all the values from the sensors.

There are just a few lines of code to access the values. Here is for example how to access the IR-camera and get the tracking data from it and assign the values to two variables:

//Flash Actionscrip3 code written in the first frame of the movie:
// -- 1 --
import org.wiiflash.Wiimote;
import org.wiiflash.events.WiimoteEvent;
import flash.events.*;
// -- 2 --
var myWiimote:Wiimote = new Wiimote();
var xpos;
var ypos;
// -- 3 --
myWiimote.connect();
myWiimote.addEventListener(WiimoteEvent.UPDATE, onUpdated);
// -- 4 --
function onUpdated(pEvt:WiimoteEvent):void{
xpos = stage.stageWidth - (myWiiremote.ir.x1*stage.stageWidth);
ypos = stage.stageHeight - (myWiiremote.ir.y1*stage.stageHeight);
}
//End of Code

1. Okey.. So first we import the required libraries.
2. Then we define some variables and our Wii Remote object.
3. Then we connect to the Wii Remote(it is really not connecting to the Wii Remote but instead it connects to the server..) we also add an eventlistener so we can tell if something happens with the Wii Remote.
4. The we write the function the eventlistener calls. Here we assign the variables xpos and ypos the value of the first Infrared "blob" the camera sees. The camera can detect up to four "blobs" and their position can be accessed with the myWiiremote.ir.x1 and ...y1 commands.. (and the other blobs with x2, x3 and so on..)

Well.. To sum up.. The Bluetooth stack is the biggest problem... Only some stacks works with certain Bluetooth dongles... Only some stacks works with some APIs... When successfully paired with the computer it is easy to access the values from the sensors... And the Wii Remote has some powerful sensors(three axis accelerometer and 1024*768 100fps IR-camera with integrated hardware tracking.)

Well that what I can think of for now.. Enjoy!

2010-03-03

Augmented Reality Tshirt

Upplagd av Linus Ericsson

Stockholm magazine "People" reports about a new augmented t-shirt.

2010-03-01

Processing libraries

Upplagd av Jonas

On this website you can find very interesting Processing libraries for free.

Sojamo