芭蕉葉上聽雨聲
2014年9月1日 星期一
uint8_t 是甚麼?
uint8_t 在 Arduino 裏相當於 byte。
維基百科頁面 Stdint.h (
http://en.wikipedia.org/wiki/Stdint.h)
有更多的信息。
基本上 Stdint.h 是 C\C++ 的檔頭,它是用來定義
一些跨平台的資料型態。當您需要一些無正負符號的位元數值時,就可以使用它。例如:
void loop() {
uint8_t volume = Serial.read() -
'a'
;
....
}
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言