Archive for the ‘Pointers’ Category

Arduino: map floated values

Wednesday, November 4th, 2009

Some have you might have noticed that the extremely helpful map() function in arduino cannot cope with floated values. Since we really needed this functionality I wrote  a mapFloat() function (or actually simply adapted the existing function), which accepts floated values and outputs a floated value as well. Keep in mind that the range of the numbers you can use is smaller (in integer), so don’t use extremely large values and only use this if you require a floated value. I use this to map ledvalues from a range 0-255 to a range 0-1 (which is useful in many cases!).

float mapFloat(float x, float in_min, float in_max, float out_min, float out_max)
{
return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
}

Power to the masses

Thursday, October 29th, 2009

There is no excuse not to check it out anymore, it’s free now since yesterday, use to your advantage:
the story

download –> http://unity3d.com/unity/download/
Peace out

Joris

The twittering officechair

Thursday, September 10th, 2009

I didn’t want to keep this from you. We have been exploring twitter and to some extend we have seen some of the possibilities of the arduino board. Two technologies that can be combined to create a system that creates tweets based on what sensors observe. Here’s a link to a how-to on creating a chair that tweets whenever the person sitting on it farts, for a real documentation of the users life “as it happens”.

ID 3870 Interaction Society – first meeting

Tuesday, September 1st, 2009

Today I presented a sort of analytical grid for critiquing products, services and environments. The idea is that students develop critical abilities and sharpen them on what already exists,  and then use these abilities on their own concepts and projects.

fourLivingColors As a subject of reflection, we proposed the Philips Living Colors lamp. The method does not stop at the object per se but tries to explore everything around it, what Victor Margolin calls the product milieu.

You can download today’s presentation in PPT format: Philips Living color used as a subject example. You can also read my original blog post about this lamp.

The questions we ask are the following (at least!)

What is this good for? -> a purpose, real or imaginary
Who is this good for? -> the target user, socioeconomy
What does this do? -> a function, real or imaginary
What does this look like in the real world? -> photos, sketches
What are its representations? -> A collection of media artifacts
What does the maker have in mind? -> product logic
Are there past projects similar to this? -> a collection of similar/different projects
What supports this? what cooperates? what competes with it? -> ecological view
How do I feel about it? -> Self experimentation, in full awareness of the limits of the approach)
How do I find out about it? -> media representation, ads, journals, blogs
How do I get it? -> distribution
What is the first impression? -> unboxing and first use
Where is this going? With how much effort? -> Future projection

The topic we ask them about, for the next meeting, is Twitter. I suggest that people not familiar with it create an account and start playing around. Points to keep in mind:

- a microblogging platform. Maybe.
- a success not driven by teens. Why?
- alternatives: Laconica (now called StatusNet). What else?
- a subset of Facebook? Or is it the other way around?