※ 引述《azureshin (azureshin)》之銘言:
: 是這樣....我們買了一個亮度偵測儀器,是透過藍牙接收的.
: 得到的是16進制8e000000
typedef unsigned int u32_t;
typedef unsigned long long u64_t;
typedef unsigned char u8_t;
u32_t noob;
u16_t h_word,l_word;
noob = 0x8E000000;
h_word = (u16_t)(noob>>16);
l_word = (u16_t)noob;
: 我問對方這要怎麼轉換成流明 ? 對方是這樣回的..
: 『需要将第二个字节的数据先左移8位再加上第一个字节的数据,再乘以 64000/65536』
h_word = (h_word << 8) + l_word;
h_word = (h_word*64000)/65536;
: 『二进制的左移』
???
: 『现在是两个8位的数据,要变成一个16位的数据』
???
u8_t temp8;
u16_t temp16;
temp8 = (u8_t)h_word;
temp16= (u16_t)temp8;
: 『第二个字节是高位』
: ..........就這樣,四句話打完他就不回我了...
: 我知道進制轉換,但我就是看不懂他們在說什麼,有誰懂得??
0.0