Showing posts with label Equipment. Show all posts
Showing posts with label Equipment. Show all posts

11/10/2013

Bumblebee housing & bracket

Bumblebee housing & bracket

The first version.
There are still many things need to be modified.







10/23/2013

Lifetrons, DrumBassIII BT



Lifetrons, DrumBass III BT
Bluetooth speaker
deluxe wireless edition


Small in size but sound is very big!!
satisfactory design.
But also weak bass
But my thought, the sound quality is a little bit better than Macbook air notebook.


















9/12/2013

compare appearance photos macbook air haswell and lg notebook z360








macbook air haswell 13 inch, appearance photos












very very good equipment.

Satisfied in all.
However, our country has been concentrated in the Windows environment application services, so
Mac to use a lot of uncomfortable.
To use ms office (of course the Mac version is also available), games, Banking and I also should be developed in vs2012.

There is vmware(fusion 5,6), parallels to use window with mac.
But requires a lot of resources and slow (especially high-quality video, 3d game).
And sometimes the window is abnormal operating.

Using Boot Camp that is obscure.
Because when you boot into Windows, the Mac would be well not to use.







LG notebook Z360 appearance photos

The screen is very good.
Thin and light and speed is fast.
But.. typing is uncomfortable, track pad is not speed reaction like mac 
The click part is to touch, difficult to adapt.

LG notebook Z360 appearance photos



supplied contents






leather case


Overall, not bad laptop.
So I had bought 4 more. ^^

3/09/2013

SICK LMS511 sensor data acquisition interface (source code, C++/MFC)

This is data acquisition source code of LMS511(SICK co.)



Source code is made by MFC(vs 2008).
The sensor is communicated by TCP/IP.
You can set sensor ip and test running by  sopas program.
The sopas program is included in the manual CD.



This movie is running test video.






LMS511 communication sample code (tcp/ip)

reference here
http://study.marearts.com/2013/03/sick-lms511-sensor-data-acquisition.html

Source code is here(github)
https://github.com/MareArts/LMS511-SICK-Laser-sensor-communication-tcp-ip

youtube
https://www.youtube.com/watch?v=2LTpaDGus1Y


Thank you.

1/10/2013

881A sonar sensor - data acquisition source code

881A sonar sensor - data acquisition source code





source code >

This code is also made by VS 2008.
This source code included 'interface_881A' class.
You can get the data easily using the class.





//port open
CString strPort = "COM5";
int baudrate = 115200;
int data = 8;
int parity = 0;
int stop = 0;//1;
C881A.OpenPort2(strPort,baudrate,data,parity,stop);


//request data
C881A.SendData();


//data acquisition part
//The data is saved in the Command_881A_GetData struct
CString str;
 str.Format("%s", C881A.ReceiveData.DataHeader.c_str());
 m_List.AddString(str);

 str.Format("Head ID : %d", C881A.ReceiveData.HeadID);
 m_List.AddString(str);

 str.Format("Head Position : %lf", C881A.ReceiveData.HeadPosition);
 m_List.AddString(str);

 str.Format("Head direction : %d", C881A.ReceiveData.Direction);
 m_List.AddString(str);


 str.Format("Range : %d", C881A.ReceiveData.Range);
 m_List.AddString(str);

 str.Format("Profile Range : %d", C881A.ReceiveData.ProfileRange);
 m_List.AddString(str);

 str.Format("Data Byte : %d", C881A.ReceiveData.DataBytes);
 m_List.AddString(str);
 

 m_List10.ResetContent();
 for(int i=0; i< 500; ++i)
 {
  str.Format("[%d] = %d", i, C881A.ReceiveData.Data[i]);
  m_List10.AddString(str);
 }
 
///////////////////////////


//close port
C881A.ClosePort();



Thank you.