今さらながらArduinoでクラスとメソッドで遊ぶ
2160 ワード
目的
いろいろライブラリー化?
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
Author And Source
この問題について(今さらながらArduinoでクラスとメソッドで遊ぶ), 我々は、より多くの情報をここで見つけました https://qiita.com/caa45040/items/9804ca598d068e494a11著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .