Wednesday, May 8, 2013

Visualization of Kinematic Capability of Robot Arm: Reachability Map

Hi, Please visit my new blog for detail. Thank you for your visting!
Screenshot:
 

Thursday, March 14, 2013

Kinematic of Redundant (7-axis) Robot arm

Hi, Please visit my new blog for detail. Thank you for your visting!
Screenshot:




Thursday, November 15, 2012

Kinematic of Serial Robot Arm

Hi, Please visit my new blog for detail. Thank you for your visting!
Screenshot:

GUI of Kinematic Computing Program


Saturday, October 20, 2012

Dual arm robot - Baxter from Rethink Robotics

Baxter is the next-generation industrial robot developed by Rethink Robotics, which is funded by Rodney Brooks, co-founder of iRobot and former director of MIT CSAIL.
meet baxter: Rethink Robotics has developed a next-generation factory robot that is versatile, easy to program, and costs just US $22 000.



Saturday, September 10, 2011

[Arduino] Light-detected Alarm

This is one of Arduino practice project from "Beginning Arduino, Michael McRoberts". In this exercise, I use an arduino uno board to control a light-detective alarm.


Monday, September 5, 2011

[C++] Storage duration, Scope, and Linkage

Quoted from "C++ Primer Plus, Fifth edition":


C++ uses three separate schemes for storing data, and the schemes differ in how long they preserve data in memory:
• Automatic storage duration—Variables declared inside a function definition—including
function parameters—have automatic storage duration. They are created when program
execution enters the function or block in which they are defined, and the memory
used for them is freed when execution leaves the function or block. C++ has two kinds
of automatic storage duration variables. (Automatic and register)

• Static storage duration—Variables defined outside a function definition or else by
using the keyword static have static storage duration. They persist for the entire time a
program is running. C++ has three kinds of static storage duration variables.
(external, internal, and no linkage)

• Dynamic storage duration—Memory allocated by the new operator persists until it is
freed with the delete operator or until the program ends, whichever comes first. This
memory has dynamic storage duration and sometimes is termed the free store.




[C++] Declare a external (global) variable in header file

If you declare a global variable (in order to share within multifile program) in header file such as:
 int tom = 3;    // declare in header file
It would be wrong, because variable will redefine in multiple c files when you include header file in them.
The right way is use extern keyword that let compile know it is a global variable:
Fork me on GitHub