Robot kits and electronic components news and reviews. Robot kits and electronic components news and reviews. 2012-10-01T09:31:25Z http://www.erobotkits.com/feed/atom/ WordPress admin <![CDATA[Electronic project – automate your bathroom light]]> http://www.erobotkits.com/?p=369 2012-10-01T09:31:25Z 2012-09-14T07:31:24Z There are so many electronic projects we can build. Some of them are more useful than the others, but all of them are fun to build. We like to have transistors and resistors in our hands. Not to mention soldering tool.  So while we have our fun, we will try to describe what we do. [...]

The post Electronic project – automate your bathroom light appeared first on Robot kits and electronic components news and reviews..

]]>
There are so many electronic projects we can build. Some of them are more useful than the others, but all of them are fun to build. We like to have transistors and resistors in our hands. Not to mention soldering tool.  So while we have our fun, we will try to describe what we do. And right now we will try to build tis electronic project. Watch how it goes!

Automate your bathroom whit this electronic project!

This electronic project  is used to automate  a bathroom light. It is designed for a bathroom  with an automatic door-closer, where the manual verification of light status is not possible. The circuit can indicate whether the bathroom is occupied also. The circuit uses  two ICs and can work  with m a 5V power supply. It does not use mechanical contacts so it performance is good.

One infrared diode(Dl) and one infrared detector diode (D2) form the sensor part of the circuit. Both the infrared diodes  and the detector LED are placed on the frame of the door with a separation between them as you can see in Fig. 1. The radiation from IR diode is blocked by a small opaque element (placed on the door) when the door is closed. Detector d1 ode D2 has a resistance measured in meg-ohms when it is not activated. When someone opens the door, the strip goes along with it. Radiation from the IR diode turns on the IR detector and the voltage drops to a low level.

fig1 Electronic project

Comparator LM358 IC2(a) compares the voltage across the led and  reference potential we  set with preset VR1.The preset is set d as to provide an optimum threshold voltage so that output of rc2(a) is very  high when the door is closed and very low when the door is opened. Capacitor Cl is placed at the output to filter out unwanted transitions in output voltage generated at the time of closing  or opening of the door. At point A, a low-to-high going voltage transition is available for closing of the door after opening it. (See wave A in Figure. 2.)

Figure 2 Electronic project

The 2nd comparator IC2(b) does the reverse of IC2(a), when the input terminals are  also reversed. At  the point B, a low level is available when we close the the door and it switches to a high level when we open the door. (See wave B in Figure. 2.). A low to-high going voltage transition will happen  at point B for every door opening. Capacitor c2 is placed at the output to filter any unwanted transitions in the voltage  generated when  closing or opening of the door.

IC 7474, is used in the circuit to store  the occupancy information of the bathroom. CI (a) can memory the state of the door and works  as an occupancy indicator and IC2(b) is here to control the relay to turn off and turn on the input pin 2 of RC1(a) whereas Q output pin of IC1 (a) is tied to  input pin  of IC1(b).

Schematics - electronic project

When we turn on power for the first time, the resistor and capacitor  R3-C3 clears the flip-flops. As a result Q outputs of RC1(a) and RC1(b) are very  low, and the low level at the output of RC1 (b) gives the signal to  a relay to turn  the bathroom light on. This procedure is independent of the door status.

The occupancy indicator red diode (D3) is off for the time being, indicating that the room is empty. When a person enters the bathroom, the door is opened and closed, and this  provides a signal for IC1 (b) and IC1 (a). When the person leaves the bathroom, the door is opened and closed again. The output of RC1(b) goes to high level, turning the bathroom light off. (See wave D in Figure. 2.)

And that’s it. We now have our bathroom light fully automated. Thanks for reading, we will try to post more electronic projects for you in near future. Hope we aren’t boring you too much :)

The post Electronic project – automate your bathroom light appeared first on Robot kits and electronic components news and reviews..

]]>
0
admin <![CDATA[Arduino project – How to build a lie detector?]]> http://www.erobotkits.com/?p=354 2012-09-06T09:52:16Z 2012-09-06T09:42:47Z Read another great Arduino project from eRobotKits! Lie detector is one of those things that intrigues us all. Everyone would love to have it. But how can we get it? We can buy the polygraph on eBay of course, but it is damn expensive. Yeah, there are a few low cost toys, but i don’t [...]

The post Arduino project – How to build a lie detector? appeared first on Robot kits and electronic components news and reviews..

]]>
Read another great Arduino project from eRobotKits!

Lie detector is one of those things that intrigues us all. Everyone would love to have it. But how can we get it? We can buy the polygraph on eBay of course, but it is damn expensive. Yeah, there are a few low cost toys, but i don’t think they work too well. It’s not worth of risk and you will throw your 30 bucks if choose to buy them. So what is the best solution? Build it!  With Arduino board of course. Arduino made it pretty simple. Click the little link called “read more” below and create your own lie detector.

Our polygraph will be based on galvanic skin response effect. When a person becomes nervous (and when a person lies, he becomes nervous) his skin resistance becomes smaller. Then our device will measure persons resistance. We will show when person is telling the truth or lies with RGB LED and buzzer. Lets build our Arduino project.

We will need this components:
One Arduino Diecimila or Duemilanove board or clone
Five R1-3 100 ohm 0.5W resistors
fourteen R4 470 K ohms 0.5W resistors
seventeen R5 100 K ohms variable resistors
one D1 RGB LED common anode
one S1 Piezotransducer sixty seven (without driver electronics)

Piezobuzzer should not be the type that don’t have electronic oscilator, it shod be just piezoelectric transducer. This is because we will generate frequency directly from Arduino board. We will measure person’s resistance by using person as one resistor in potential divider and real resistor as the other.

Here is the Arduino project  schematics:

Arduino project - lie detector

The software part For Arduino is not complicated. We just need to compare voltage at A0 and A1 places. If the values are the same, then LED should be green. When A0 is much higher then A1, skin resistant fell and diode will be red and Arduino will start the buzzer. If A1 is higher then A0, diode will be blue.

Here is the program:

int red_Pin = 9;
int green_Pin = 10;
int blue_Pin = 11;
int buzzer_Pin = 7;
int pot_Pin = 1;
int sensor_Pin = 0;
long red = 0xFF0000;
long green = 0x00FF00;
long blue = 0×000080;
int band = 10;

void setup()
{
pinMode(pot_Pin, INPUT);
pinMode(sensor_Pin, INPUT);
pinMode(red_Pin, OUTPUT);
pinMode(green_Pin, OUTPUT);
pinMode(blue_Pin, OUTPUT);
pinMode(buzzer_Pin, OUTPUT);
}

void loop()
{
int gsr = analogRead(sensor_Pin);
int pot = analogRead(pot_Pin);
if (gsr > pot + band)
{
setColor(red);
beep();
}
else if (gsr < pot – band)
{
setColor(blue);
}
else
{
setColor(green);
}
}
void setColor(long rgb)
{
int red = rgb >> 16;
int green = (rgb >> 8) & 0xFF;
int blue = rgb & 0xFF;
analogWrite(red_Pin, 255 – red);
analogWrite(green_Pin, 255 – green);
analogWrite(blue_Pin, 255 – blue);
}
void beep()
{
// 5 Khz for 0.2 second
for (int i = 0; i < 1000; i++)
{
digitalWrite(buzzer_Pin, HIGH);
delayMicroseconds(100);
digitalWrite(buzzer_Pin, LOW);
delayMicroseconds(100);
}
}

When you finish programming, import your program and Your Arduino lie detector is ready. You will need someone willing to test the Arduino project. Just ask him is the sky green or something like that. You will see that it works. Have fun.

The post Arduino project – How to build a lie detector? appeared first on Robot kits and electronic components news and reviews..

]]>
0
admin <![CDATA[Robot Curiosity – vacation on Mars]]> http://www.erobotkits.com/?p=344 2012-09-03T13:50:09Z 2012-09-03T13:40:04Z Curiosity  is one more great vehicle robot that is doing its job. NASA sent him to explore the surface of Mars. The robot became quite popular around the word. Newspapers and web portals write about its achievements every day and it’s no surprise that many people know what is Curiosity. We would like to describe [...]

The post Robot Curiosity – vacation on Mars appeared first on Robot kits and electronic components news and reviews..

]]>
Curiosity  is one more great vehicle robot that is doing its job. NASA sent him to explore the surface of Mars. The robot became quite popular around the word. Newspapers and web portals write about its achievements every day and it’s no surprise that many people know what is Curiosity. We would like to describe the robot and his task on the red planet.

Mars Science Laboratory, known as Curiosity, is section of NASA’s Mars Exploration Program, a  program  with purpose to explore the Red Planet. The mission was launched from Cape Canaveral, Fla., in fall 2011, and the robot arrived at an interesting area of Mars in August 2012. Curiosity will try to find out whether Mars ever had an environment that is  capable of supporting  any kind of life and conditions that preserved clues about life. This fact will help us understand if there was life on the Mars and, if so, where we should look for it in the future.

Vehicle robot Curiosity is much bigger than Opportunity and Pathfinder who landed on Mars before it. It is 9 feet long and four times heavier than Spirit and Opportunity. The robot has 10 science instruments mounted which will be used to investigate soil, rock and atmosphere of the Red Planet. A laser that will crush the rock and another tool will try to find organic compounds. Other instruments are mounted cameras, sensors and devices that will identify compounds of the soil and rock. And of course it has a very powerful drill.

This vehicle robot has 6 large 30 inches high  wheels and each wheel ha its own independent motor. Front and rear wheels also have steering motors which helps the robot movement.  This rover can turn for 360 degrees in-place.

The robot posses a nuclear battery  which will provide enough power for the bot to operate one year. After that, Curiosity will gain the power from solar panels mounted on the top of it.

The landing of the bot was very interesting and we bring you illustrated landing with all the steps the robot had to do.

Curiosity landing

 

 

The post Robot Curiosity – vacation on Mars appeared first on Robot kits and electronic components news and reviews..

]]>
0
admin <![CDATA[Kuratas – ultimate gadget for robot fans]]> http://www.erobotkits.com/?p=335 2012-08-16T12:07:43Z 2012-08-16T12:02:49Z A company  from Japan called Suidobashi Heavy Industries recently created its 13-foot  humanoid robot called Kuratas. This robot is the creation of artist Kogoro Kurata and robotics scientist Wataru Yoshizaki. They designed it to be some kind of war machine  with guns and sheilds but it is not deadly as it seems.  That is why [...]

The post Kuratas – ultimate gadget for robot fans appeared first on Robot kits and electronic components news and reviews..

]]>
A company  from Japan called Suidobashi Heavy Industries recently created its 13-foot  humanoid robot called Kuratas. This robot is the creation of artist Kogoro Kurata and robotics scientist Wataru Yoshizaki. They designed it to be some kind of war machine  with guns and sheilds but it is not deadly as it seems.  That is why you can buy it for yourself. Kuratas also can be useful because it runs 10 km/h and it can be used as a car. Very expencive one!

There are three ways to control Kuratas  – 1.  through a remote  controller, a master slave type (you can actually enter in the robot and control it from inside. It has two joysticks and moving them you move the robot.), or an iPhone. Kurats has  an operating system V-Sido and it is equipped with a launcher and a two Gatling gun. You only need to smile if you want to activate the guns which by the way fire 6000 bullets in one minute. The robot is equipped with a Xbox Kinect in order to recognize your peoples  facial expressions.

Best part is that the Company allow customization of the robots. If you decide to buy it, you can equip the bot with all sorts of gadgets and upgrades. You can add glass holder, different sorts of guns, Shotproof, Pilotless Head and many other things. You can eve pick a color of your robot. Imagine your mean war machine in pink :)

This is like a dream robot for all robot kit fans. But there is one tiny problem. The price. The basic Kuratas costs 1.35 million dollars and upgrades make the price even bigger. If you have that kind of money, we suggest you buy this robot because we think it is worth every cent. And when you buy it, we’d like to ride with you a few miles :)

https://www.youtube.com/watch?v=hDQdgttKrSE

 

The post Kuratas – ultimate gadget for robot fans appeared first on Robot kits and electronic components news and reviews..

]]>
1
admin <![CDATA[Advanced Arduino project: Security terminal]]> http://www.erobotkits.com/?p=329 2012-08-13T08:35:53Z 2012-08-13T08:34:46Z Here is another useful Arduino project. We will build a terminal which opens when you enter right security code. You will have to enter the right password into keypad and the green led will activate. If the code is wrong, then Arduino will activate red LED. After the project is finished, we can upgrade it [...]

The post Advanced Arduino project: Security terminal appeared first on Robot kits and electronic components news and reviews..

]]>
Here is another useful Arduino project. We will build a terminal which opens when you enter right security code. You will have to enter the right password into keypad and the green led will activate. If the code is wrong, then Arduino will activate red LED. After the project is finished, we can upgrade it and program the Arduino to open electronic lock or something similar.

For this project, we wil need a few things. First we will need Arduino board or some clone (that is why is called Arduino project :) ). We will also need red 5mm LED, green 5mm LED, two 270ohm 0.5W metal film resistor and 0.1 inch header strip and keypad. We will create this project on breadboard so we’ll need that as well.

All these electronic components you can find at electronickits.com, or your local electronic parts dealer.

If you understand how the keypad works, you won’t have the problem creating the schematics by yourself. Keypads are usually arranged in a grid so when we press one of the keys, it connects a row and column. The switches are placed at the intersection of row and column wires. With this system, we only need to use 7 digital pins instead of twelve (1 for each key).

Arduino Keypad SChematics

Because of this keypad system, we will have a bit more work on coding. Don’t worry, we will show you the codeing part, you can even download some library from the person who created operating keypad for Arduino.

here is the code:

#include <Keypad.h>
char* secretCode = “1234″;
int position = 0;
const byte rows = 4;
const byte cols = 3;
char keys[rows][cols] = {
{’1′,’2′,’3′},
{’4′,’5′,’6′},
{’7′,’8′,’9′},
{‘*’,’0′,’#'}
};
byte rowPins[rows] = {2, 7, 6, 4};
byte colPins[cols] = {3, 1, 5};
Keypad keypad = Keypad(makeKeymap(keys), rowPins, colPins, rows, cols);
int redPin = 9;
int greenPin = 8;
void setup()
{
pinMode(redPin, OUTPUT);
pinMode(greenPin, OUTPUT);
setLocked(true);
}
void loop()
{
char key = keypad.getKey();
if (key == ‘*’ || key == ‘#’)
{
position = 0;
setLocked(true);
}
if (key == secretCode[position])
{
position ++;
}
if (position == 4)
{
setLocked(false);
}
delay(100);
}
void setLocked(int locked);

{
if (locked)
{
digitalWrite(redPin, HIGH);
digitalWrite(greenPin, LOW);
}
else
{
digitalWrite(redPin, LOW);
digitalWrite(greenPin, HIGH);
}
}

This code is not very complicated. The loop checks which key is pressed. If we press # or *, loop will set the variable to zero. If we press any other key (any of the numbers), it will check did we pressed expected key and move the loop to the next one. Program will operate that way for all chars. If the code is right, Arduino will turn on the green LED, and if not, red LED will be on.

We did not mention, in the beginning of the program you define your secret code which Arduino compares to the one you enter when testing the project. And we finished another Arduino project. Thanks for staying with us!

The post Advanced Arduino project: Security terminal appeared first on Robot kits and electronic components news and reviews..

]]>
0
admin <![CDATA[Electronic project: Car battery charger]]> http://www.erobotkits.com/?p=322 2012-08-06T09:05:57Z 2012-08-06T09:05:57Z Today we will turn off our robots and will focus on  this particular electronic device. Battery charger always come handy. Imagine the situation where you are on the road trip and you are taking photos with your handy camera that goes on 6V battery. On the half way your battery is dead and you need [...]

The post Electronic project: Car battery charger appeared first on Robot kits and electronic components news and reviews..

]]>
Today we will turn off our robots and will focus on  this particular electronic device.

Battery charger always come handy. Imagine the situation where you are on the road trip and you are taking photos with your handy camera that goes on 6V battery. On the half way your battery is dead and you need to recharge it in order to continue taking shots. In this electronic project we will help you to build your own car battery charger. Yes, you can buy some commercial solution, but where is fun in that? And this battery charger is cheaper than the one in the store. All parts for the charger can be found in local electronic store, but you can find it cheaper in online electronic stores. We recommend electronickits.com because they have quality electronic components and they are not expensive.


This  car charger can charge two types of batteries. Ordinary  12V and 6V batteries. If it is used a with transformer that can provide 4 to 5 A at a voltage between 12.6V and 16V then the 6V and 12v batteries will charge regardless the position of the switch on schematics. In fact we don’t need the switch at all.

Here is a battery charger circuit scheme:

car_battery_charger_scheme
We created this device so that battery charging current is limited to 4.2A. If we give a 600mV voltage on R1 resistor, then the T1 transistor starts to operate (conduct). T3 transistor help us to stop the charging the battery. Too much charging is avoided because the value of current on T3 is restricted. The distinction between applied voltage at T4′s collector and real voltage of the battery is balanced thru T4′s emitter junction.

The power input of T4 transistor can be calculated by multiplying load current and voltage difference we mentioned above. For 6V battery, charging power reaches 40W. After that device stops charging the battery. The rectifier diodes must provide 4A at 40V. One other thing, we must cool the T4 transistor. Heatsink must be placed on the transistor in order to cool it down.

Best way to build this electronic project is to build it on breadboard and with some good wires. Main concern is to dissipate the heat and to protect the circuit from temperature and damaging. To do that it must be placed in some kind of case. And then you have cool and cheap car battery charger. You just need to buy rechargeable batteries.

The post Electronic project: Car battery charger appeared first on Robot kits and electronic components news and reviews..

]]>
0
admin <![CDATA[Robot Kits Answers]]> http://www.erobotkits.com/?p=314 2012-08-03T11:43:33Z 2012-08-03T11:36:29Z We all experienced some problem we could not solve and it was nearly impossible to find answer via Google or other search engine. I found that so frustrating when it happens to me also. I think the problem is that robot kits community is not  too big and it is hard to find real expert. [...]

The post Robot Kits Answers appeared first on Robot kits and electronic components news and reviews..

]]>
We all experienced some problem we could not solve and it was nearly impossible to find answer via Google or other search engine. I found that so frustrating when it happens to me also. I think the problem is that robot kits community is not  too big and it is hard to find real expert. Well, you found the place where all the questions about robot kits will be answered.  Just post your question in the comment area and our team or some other visitor will help you.

The post Robot Kits Answers appeared first on Robot kits and electronic components news and reviews..

]]>
1
admin <![CDATA[Arduino project for begginers: Morse coder]]> http://www.erobotkits.com/?p=306 2012-08-05T20:29:57Z 2012-07-30T10:01:31Z With Arduino board you can create almost any hobby electronic device. There are countless ideas for Arduino projects. That is why this board is so popular. You can never get board if you are tech fan. And also, your creation can be very useful. That is why we decided to provide you another Arduino project [...]

The post Arduino project for begginers: Morse coder appeared first on Robot kits and electronic components news and reviews..

]]>
With Arduino board you can create almost any hobby electronic device. There are countless ideas for Arduino projects. That is why this board is so popular. You can never get board if you are tech fan. And also, your creation can be very useful. That is why we decided to provide you another Arduino project for beginners. Later, we will be more focused on advanced Arduino projects, but right now we will try to help the folks who just bought the board and want to build their first electronic device.

For this project we will just improve our first one which we posted a few weeks ago. We created S.O.S. Morse code flashlight. Today we will create a device that can Translate characters into Morse code. It will get series of sentences as an input, and it will provide series of dots and lines (coded signals) on output.

For this device, you will need the same parts as for our first project.

One Arduino board or clone
23 D1 5-mm Red LEDs
6 R1 270 Ω 0.5W resistors

The scheme is the same as is in project 1.

For the software part, first you will have to know Morse code. You can find it anywhere on the net. We provided the one from Wikipedia. There are a few rules we must follow. Dash must be three times long as dot. Time between the dashes or dots is equal to the time of dot and the space between words is seven times longer the time between characters.

Here is how to program your arduino board:

int ledPin = 12;
char* letters[] = {“.-”, “-…”, “-.-.”, “-..”, “.”, “..-.”, “–.”, “….”, “..”,”.—”, “-.-”, “.-..”, “–”, “-.”, “—”, “.–.”, “–.-”, “.-.”, “…”, “-”, “..-”, “…-”, “.–”, “-..-”, “-.–”, “–..” };
char* numbers[] = {“—–”, “.—-”, “..—”, “…–”, “….-”, “…..”, “-….”, “–…”, “—..”, “—-.”};
int dotDelay = 200;
void setup()
{ pinMode(ledPin, OUTPUT);
Serial.begin(9600); }
void loop()
{ char ch; if (Serial.available())

{
ch = Serial.read(); // read a single letter
if (ch >= ‘a’ && ch <= ‘z’)
{
flashSequence(letters[ch - 'a']);
}
else if (ch >= ‘A’ && ch <= ‘Z’)
{
flashSequence(letters[ch - 'A']);
}
else if (ch >= ’0′ && ch <= ’9′)
{
flashSequence(numbers[ch - '0']);
}
else if (ch == ‘ ‘)
{
delay(dotDelay * 4);
}
}
}
void flashSequence(char* sequence)
{
int i = 0;
while (sequence[i] != NULL)
{
flashDotOrDash(sequence[i]);
i++;
}
delay(dotDelay * 3);
}
void flashDotOrDash(char dotOrDash)
{
digitalWrite(ledPin, HIGH);
if (dotOrDash == ‘.’)
{
delay(dotDelay);
}
else // must be a -
{
delay(dotDelay * 3);
}
digitalWrite(ledPin, LOW);
delay(dotDelay);
}

We must add the command:

Serial.begin(9600);

This command will se  the speed of USB port on our Arduino. This speed will be enough for our morse code. Also we will need to use tool in Arduino software called Serial Monitor. It will allow us to type messages which will be sent to Arduino for coding. You can start the tool by clicking icon on right side of your software. Then write something in the text box and press return key. Your device will start to blink that sentence in Morse code and your  Arduino project is finished!

 

The post Arduino project for begginers: Morse coder appeared first on Robot kits and electronic components news and reviews..

]]>
0
admin <![CDATA[Robot kits review: Robotic arm OWI-535]]> http://www.erobotkits.com/?p=290 2012-08-05T20:30:30Z 2012-07-27T11:45:43Z Today we’ll review this great robot for kids. There aren’t many products on market in this area of robotics. And this is one of the most promising bot. It looks like a model of professional robotic arms used in car manufacturing. We expect it will be easy to build because there is no soldering and [...]

The post Robot kits review: Robotic arm OWI-535 appeared first on Robot kits and electronic components news and reviews..

]]>
Today we’ll review this great robot for kids. There aren’t many products on market in this area of robotics. And this is one of the most promising bot. It looks like a model of professional robotic arms used in car manufacturing. We expect it will be easy to build because there is no soldering and programming.

We got our hands on this robotic arm, let’s see how fun can it be!

As we opened the box, we noticed that this is not some “throw it together” robot that can be assembled in 5 minutes. Every part of the bot was by  itself. Robot body is made of plastic and its parts is melted into part plates. First they have to be separated from each other and then we can start building the robot. Motors and wires were soldered and ready to be placed in robot. Controller also has to be constructed and attached to robot. We must mention one other cool feature. Commands on gearbox can be customized by the builder by choosing which command will operate which motor. This kit was not hard to build and it was meant to be created by children hands. Actually kids love to build this one. We spent an hour to build and test this robotic arm and we must say it did not disappoint us.

The OWI-535 Robot Kit is a RC robotic arm with 5 degrees of freedom, 100 g lifting capacity, and a white LED light. Using five DC motors, the robot has a 120 degree wrist movement, a 300 degree elbow movement, a 180 degree shoulder movement, a 270° base movement, and a 0-1.77″ gripping movement. In one sentence it can move in all directions and angles.

OWI’s second-generation robotic arm kit, OWI-535, can teach your kids the basic mechanics and electronics.  Robotic arm uses five motors with gearboxes and when one of the motors encounters high resistance to movement, robot will alert you to stop the arm’s movement in that direction. White diode is placed to the hand of the arm to illuminate object you are holding. That way it can operate in dark also.

There are a number of kids that  like the OWI Robotic Arm. If your child has shown any interest at all in robotics and he likes to build things, this bot will be a great gift. It’s almost like few toys for the price of one. First he must build the robot, and then he can move objects, type on keyboard and any other thing he can think of.

The post Robot kits review: Robotic arm OWI-535 appeared first on Robot kits and electronic components news and reviews..

]]>
0
admin <![CDATA[Hexapod robot review: MSR-H01]]> http://www.erobotkits.com/?p=284 2012-08-05T20:31:08Z 2012-07-23T10:09:35Z We finally got our spider robot we ordered two weeks ago and we are eager to build and test it. If you aren’t afraid of spiders, stay with us and read our toughts on this bot. We expect it to be one of the greatest hexapod robots on market and we hope he will not disappoint [...]

The post Hexapod robot review: MSR-H01 appeared first on Robot kits and electronic components news and reviews..

]]>
We finally got our spider robot we ordered two weeks ago and we are eager to build and test it. If you aren’t afraid of spiders, stay with us and read our toughts on this bot. We expect it to be one of the greatest hexapod robots on market and we hope he will not disappoint us. Let’s open the box!

MSR-H01 is a 3 DOF hexapod. After we opened the box, we found 26 precision laser-cut aluminum body and leg components. You can find it in three colors: Silver, Red or Black. We ordered the bot with black legs because it looks scarier :) . The box contains all the necessary screws and mechanical parts. This is an advanced robot kits so the servos and batteries are not included. Never the less we were a bit surprised they did not put basic servos and battery in the box so the buyer can assemble the bot right from the box parts. That way people who don’t own those parts will be more interested in buying this robot kit and Micromagic Sytems would have more costumers.

The screws provided in the box are high quality, stainless steel, hexagon button (naturally…) head type, with steel stand-offs. The top body part has mounting holes on which you can attach p.Brain-SMB or SSC32 controller. Electronics  is mounting  underneath the top body plate so there is still plenty of room within the body for a 5 cell battery. Battery holder can be placed within the body for a clean and logic power supply. This hexapod has a place for mounting servo pan/tilt head and naturally it is in front of the bot.

Dimensions of the standing robot are: 280mm x 320mm x 175mm

We used two sizes of servos for building this kit: Hitec mini size HS-225BB/MG and HS-645MG. Smaller one for the head of the bot, and bigger ones for the movement. Also we used a Sub-C 5 cell battery pack which we mounted in the robot body plate.For the “brain”, we mounted p.Brain-SMB controller as suggested by manufacturer. We think that Arduino board will also be perfect for this bot. Assembling the other parts was easy. Just a few places to solder the wires.

Programming depends on type of the board you mounted. We programmed our p.Brain-SMB controller HexEngine Terminal. Our robot can move and go around the obstacles by itself but we also have remote controller to overwrite p.Brains functions. That way we have full control of the hexapod.

Out conclusion is that this is a great and advanced robot kit. Building this bot is not for the beginners. You must have some experience to build this one. But when it is done, everyone can control it, even your children. That’s it, we enjoyed writting this hexapod robot review.We recommend this kit to everyone who isn’t afraid of spiders!

The post Hexapod robot review: MSR-H01 appeared first on Robot kits and electronic components news and reviews..

]]>
0