目的
いろいろライブラリー化?
hogeがクラス
クラスは、おおもののやつ
showが英語で表示
単なる関数
wama_wamaは、実態の定義 (トロンとかだと仮身とかわけのわからないのがあつた)
ちょうベリーグットで簡単
#include <Arduino.h>
//クラスの定義
struct hoge
{
void show(); //メソッドの宣言
};
//メソッドの定義
void hoge::show()
{
Serial.println("HOGE");
}
hoge wama_wama;
void setup() {
Serial.begin(9600);
Serial.println("");
wama_wama.show();
Serial.println("GIZA");
}//setup
void loop() {
}//loop