1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

今さらながらArduinoでクラスとメソッドで遊ぶ

Posted at

目的
いろいろライブラリー化?

hogeがクラス
クラスは、おおもののやつ

showが英語で表示 
単なる関数

wama_wamaは、実態の定義 (トロンとかだと仮身とかわけのわからないのがあつた)

ちょうベリーグットで簡単

o_con294.jpg



#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



1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?