Add volume control to AKG K26P

1:27 PM at 1:27 PM

I had my AKG K26P about 1.5 month ago, spend me $75AUD in Sydney HiFi shop, in the same time, there also has AKG K27i, it is a ipod version headphone, white color and with volume control, but the price is $129AUD ! Here is the details of these two headphone :

K 26 P / K 27 i

Type K 26 P: dynamic, closed-back
K 27 i: dynamic, closed-back
Efficiency K 26 P: 125 dB SPL/V
K 27 i : 126 dB SPL/V
Frequency range K 26 P: 12 Hz to 28 kHz
K 27 i : 11 Hz to 28.5 kHz
Rated impedance 32 ohms
THD <1%
Cable 1.5 m (5 ft.)
Connector Stereo mini plug
Net weight (without cable) Approx. 2.6 oz.
Special features K 26 P :
Folding mechanism
K 27 i :
Folding mechanism
Integrated precision volume control


Photo : (Left : K26P, Right : K27i)
The image “http://www.nusystems.co.uk/images/products/medium/AKG.K26P.2597.jpg” cannot be displayed, because it contains errors. http://www.musik-service.de/images/ProduX/395752743j00.jpg
Firstly, I had two wires of Sennheiser MX500, It has a volume control! I was broke the earphone, but wire is like new. The wire is asymmetrical, so cut the longer side as same as the shorter side.

Then, open the K26P, solder off the original wires, and solder the MX500 wire on.

Here has some photos of the works:

K608i 拆机照

9:16 AM at 9:16 AM

因为前几天 Motorola V3x 大减价,所以忍不住要让手机更新换代了,一是因为手机这东西一般用过一年多就会出现些小毛病,趁此还不如在出毛病前处理掉,二是因为V3x是我的梦机。为了更一步减低对V3x的花费,我就要把K608i在ebay上卖掉,卖掉之前特拆机留照以作纪念。


S7111

9:00 AM at 9:00 AM

因为不小心把橙汁撒了上去,不得已要拆机清洁。顺便留照

Moto v3x 各地官方Firmaware下载

9:21 PM at 9:21 PM

转载的,用google搜索到的,转自 http://www.yesbug.com/blog/

----------------------------原文---------------------------------

终于找到各地的v3x官方包(Firmware), 大家刷坏了可以刷回来
具体刷机教程请查看 手机之家
刷机有风险 请各位慎重

运营商:澳大利亚 H3G
版本号:R252211LD_U_85.97.F1P
下载链接: R252211LD_U_85.97.F1P

运营商:英国 H3G
版本号:R252211LD_U_85.97.F1P
下载链接: R252211LD_U_85.97.F1P

运营商:德国 E-PLUS
版本号:R252211LD_U_85.98.D0R
下载链接: R252211LD_U_85.98.D0R

运营商:无运营商官方Firmware
版本号:R252211LD_U_85.98.D0R
下载链接: R252211LD_U_85.98.D0R

运营商:无运营商台湾零售Firmware
版本号:R252211LD_AS_U_85.92.E3P
下载链接:R252211LD_AS_U_85.92.E3P

运营商:意大利 Vodafone
版本号:R252211LD_U_85.97.C03P
下载链接:R252211LD_U_85.97.C03P

-----------------------------完------------------------------

都是刷友啊,哈哈

[note] convert char to int in a string

11:01 AM at 11:01 AM

#include
#include

using namespace std;

int main()
{

//Some string here
string number = "123456789";

//Array to hold the separate integers
int intArray[ number.length() ];

//Convert from char to int
for ( int i=0; i < i="0;">

[note] read file data to string, by char

11:00 AM at 11:00 AM

#include
#include

using namespace std;

int main()
{

ifstream inputFile;
inputFile.open("some file name here");

string number;
char digit;

while( inputFile.get( digit ) )
{

number = number + digit;

}

return 0;

}

[note] pointer class function

10:55 AM at 10:55 AM

class myclass
{
node IPlist::*find (string address) const;
}

//the notation should be :

node* IPlist::find (string address) const
{
...
}

[note] Compare string

10:50 AM at 10:50 AM

//string can be compared directly, even it has "." or "@" symbols inside
#include
int main()
{
std::string a;
std::string b;
if ( a == b )
{
cout << "a is equal to b"; } }

C++ Forum

10:31 AM at 10:31 AM

I found a very good c++ forum, http://www.codeguru.com/forum/ in there, peoples gave me very fast and professional replys.

复诊

10:21 AM at 10:21 AM

周二看了医生后,给我开了三种眼药水,Timopol XE,早上用,Prednefin Forte白天用,Lumigan晚上用,当天晚上眼睛就感觉好了很多。周五去复诊。

复诊的地方可真远,离我家大概30公里,只预订到了早上9:15的时间,不到8点就出门了,绕过堵车的区,刚好按时到。

复诊结果,我的右眼压强跌到了16,基本没问题了,继续用药10天,在检查一下就可以了。

折腾啊,看来以后要多注意身体保养了