Skip to main content

Which Gaming Console is right for you?

Today's market is full of different gaming consoles that let your kids to move and jump on sofa and bed. But, it is hard to decide which one is suitable for your children and which will be good to buy. So, here i will discuss the three major brands of gaming consoles and tell you what will be good to buy according to the reviews on technology reviewing sites.

The latest gaming consoles in the market by three different major brands are Sony PlayStation 3, Nintendo WII and Microsoft Xbox 360 with kinect. Now, lets discuss the review of all three gaming consoles:-
1. Sony PlayStation 3
- The latest version available in the market is PlayStation 3 by Sony. Sony's Playstation is always considered an icon in gaming world and the PS3 has changed a few things. PS3 has acquired the curves and lost the boxy look compared to previous PlayStations and offers in three different colors apart from the standard color Black. It is available in two storage options- 12 GB and 500 GB which not only store games but also videos, movies, and pictures.

If you and your children love action games or car games, the PlayStation 3 is a great option. It does not mean that it is not good for other games. But, with dual shock controllers, the feedback of hitting and getting hit by someone look realistic. Sony also offers navigation controllers and real-motion games are operated by the motion controller with an addition of Blue-Ray remote control in case you want to use your PS3 as a Blue-Ray disc player. The price of PS3 in India is starting at the rate 18,000 with available free games and premium games cost 599 to 8,000.
2. Nintendo WII
- The WII comes with great motion controller that you can use as a tennis racket, a baseball bat, or boxing gloves. Few months ago, Nintendo has upgraded the controller with an add-on instrument to bring greater accuracy and introduced the new games like archery and darts. WII is not known for its graphic and sound effects, but for the fun loving games and realistic view.

The WII is the smallest console available in the market that costs Rs.16,000 and games cost between 1,000 to 3,600. There is an add-on in the form of WII fit that cost you more. It is a type of floor board that can be used for exercise games and dance.
3. Microsoft XBOX 360 with Kinect
- It is a popular console that brings graphic like PS3 and WII-like movement games. Variants come with 4GB and 250GB storage space and includes the 3D camera. In XBOX 360, you will be the motion controller. You can buy Kinect separately later on when you become use to XBOX games. People interested in action games, flight simulators or car games will find XBOX a good option.

This will cost you Rs.18,000 and games cost between 699 to 7,000. Only you need bigger room to allow the camera perfectly sense the user movements.

Verdict:

If you are willing to buy a good gaming console for kids and not conscious about graphics, The Nintendo WII will be good for you. But, it does not provide variety of games to your children. PlayStation 3 and Microsoft XBOX 360 are good for movement-related games and PlayStation 3 scores highest in terms of graphics and realistic view. Whereas, you won't require any controller with XBOX 360.

Most of the stores allow touch-and-try offer, so experience that before come to conclusion to buy anyone of it. If you want to sit for more time to get the best, there is much talked about PlayStation 4 by Sony releasing this December. So, you can also try and review PS4.

Comments

Popular posts from this blog

Buzzer interface with 8051 microcontroller

Buzzer  is a electronic device that converts the electronic signal into buzzing noise, that is applied to it. It can be used as electronic bell or as quiz buzzer in many applications around us. Here, i world like to discuss the interfacing of a small buzzer with 8051 microcontroller and how different projects can be constructed. Buzzer Interfacing: This project shows the interface with AT89S52 microcontroller to a buzzer. When a push button is pressed, the buzzer will get ON and OFF ( number of times set in the code ) and then stops. Circuit Diagram: - The port P1 of the microcontroller is connected to buzzer. This type of connection is possible, if the current requirements of the buzzer is not more than 20mA. The output is in current source mode so that buzzer will turn ON when the output of the port is logic LOW. Switch is connected to port P3 which remains at logic HIGH by pull up resistor.  Code: #include "REG52.h" #define buz P1 sbit SW=P3^0; long i...

Comparison Chart Between 8051, 8052, 8031and 8751

8051 is a popular 8-bit microcontroller and has been used in many applications since Intel introduced it. Many 8051 architecture are produced by Triscend, Intel, Atmel, Philips, Infineon (Siemens), ISSI, and Max Corp. Today, 8051 microcontrollers may not be popular but, the 8051 architecture is still popular and employed in thousands of embedded applications. This 8-bit architecture has been different segments such as 8052, 8051, 8751 and 8031 . 8052 is the super-set of 8051 and 8031 is the memory-less microcontroller hence, it has interfaced with external ROM. Whereas, 8751 chip has only 4Kbytes of on chip UV-EPROM. Everyone knows about the general 40-pin microcontroller i.e. 8051 introduced by Intel in 1980s and consists of serial communication pins, Timer, Interrupts, RAM, ROM. It has 4 ports and each port has 8 pins, total 32 pins and other 8 pins for other purposes. 8052 is the super-set of 8051 that consists of 8K bytes of internal RAM (4K in 8051), 256 by...

Different ways to generate delays in 8051

The delay length in 8051 microcontroller depends on three factors: The crystal frequency the number of clock per machine the C compiler. The original 8051 used 1/12 of the crystal oscillator frequency as one machine cycle. In other words, each machine cycle is equal to 12 clocks period of the crystal frequency connected to X1-X2 pins of 8051. To speed up the 8051, many recent versions of the 8051 have reduced the number of clocks per machine cycle from 12 to four, or even one. The frequency for the timer is always 1/12th the frequency of the crystal attached to the 8051, regardless of the 8051 version. In other words, AT89C51, DS5000, and DS89C4x0 the duration of the time to execute an instruction varies, but they all use 1/12th of the crystal's oscillator frequency for the clock source. 8051 has two different ways to generate time delay using C programming, regardless of 8051 version. The first method is simply using Loop   program function in which Delay() funct...