¤¤¤ Tools for developing J2ME applications ¤¤¤

I have just added a short description of which tools to use for developing J2ME applications. It changes all the time what tool configurations I prefer the best. At the moment it is Eclipse with the J2ME plugin from Nokia.

J2ME tools

# posted by Thomas @ 5:44 PM 0 comments  



¤¤¤ How fast is your Symbian Code running ¤¤¤

If you want to know how fast your programs or algorithms are running in Symbian you can use the following methods.

TInt t1 = User::TickCount();

// Do something

TInt t2 = User::TickCount();
TInt diff = t2-t1;

One tick is different depending on which phone you own.
To get the tick count on your phone you can call:
User::LeaveIfError(HAL::Get(HALData::ESystemTickPeriod, period));

For the Nokia 6680 it is 15.625 microsecond pr tick.

# posted by Thomas @ 11:07 AM 0 comments  



¤¤¤ Symbian Introduction Tutorial ¤¤¤

At the moment I think that there are very few good tutorials on the net that helps you get started programming in Symbian. How do you get started and how do you get to know the basic that will help you move on to some more advanced features.

Yesterday I held a one day tutorial at Berkeley about programming Symbian mobile phones. Some of the material is online and should help others in getting started with Symbian.
-- Symbian Tutorial --

# posted by Thomas @ 12:10 PM 0 comments  



¤¤¤ Noka 770 - Linux based table / PDA ¤¤¤

Nokia has just announced a new tablet / PDA running Linux.
Is it a good idea?
Are Nokia hoping that a lot of other people are going to develop the software for it?

There are different opinions on the subject:
Nokia 770 main page
Review in eWeek
Review in PCMag

The development platform for the new device Maemo

# posted by Thomas @ 5:16 PM 0 comments  



¤¤¤ Image format supported by 6680 ¤¤¤

The new 6680 phones has two cameras. However, it only supports capturing images in specific format. If you try to capture images in a format that is not support an error will occur.

The following format are supported (in Symbian C++):
Back camera: 1280x1024, 640x480 and 160x120
Front camera: 640x480 and 160x120
When it comes to video both cameras supports 176x144 and 128x96

Besides the normal color format the back camera also supports EFormatExif

# posted by Thomas @ 12:22 PM 0 comments  



¤¤¤ Vibrator work on series 6.0 phones ¤¤¤

It seems like Nokia finally implemented the vibrator API on the phones.

I have tested it on the 6680, but it should also work on 6630 and I guess it will be standard on all the future series 60 phones from Nokia.

Here is the code that does the trick:

CVibraControl* vibra = VibraFactory::NewL();
vibra->StartVibraL(10000);

Remember that the vibrator function has to be switched on in the current selected profile for this to work. E.g. Tools/Profiles/Vibrator On.

# posted by Thomas @ 3:32 PM 2 comments  



¤¤¤ New Nokia Phones Introduced ¤¤¤

Just as The 6680 and 6681 phones hit the street Nokia announced their new series of phones the N-series.

It looks like the N-70 is just a newer version of the 6680.
The N-90 looks like it is dedicated to recording pictures and video,
but the N-91 is the most interesting, that is an online version of an mp-3 player, with Wireless LAN, WCDMA, 4GB hard disk and Symbian OS 9.1.

For details about the phone check: Forum Nokia

# posted by Thomas @ 11:07 AM 0 comments  



¤¤¤ Complete specification of Nokia Symbian Phones ¤¤¤

Nokia do not provide a full specification of their devices. It is however available from this site
Nokia phones, full specification

# posted by Thomas @ 4:02 PM 0 comments  



¤¤¤ Mobile Phone with 7 megapixel camera ¤¤¤

Is it a phone with a camera or a camera with a phone. Samsung has just present a 7 megapixel phone:
http://www.dpreview.com

http://www.gizmodo.com/

# posted by Thomas @ 3:56 PM 0 comments  



¤¤¤ Mobile Blog Startet ¤¤¤

This is the first post on my mobile blog. This blog will describe different aspects about developing services and programs for mobile phones.

# posted by Thomas @ 5:07 PM 1 comments