0
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 5 years have passed since last update.

個人的な技術メモ

Last updated at Posted at 2019-08-09

個人的な技術メモ

コーディング全般

コメント

コメントはきちんと書きましょう。僕の場合は英語を使ってますが日本語でも構いません。

ただ、コンパイラによっては2バイト文字を使うとエラーを吐くものもあるので気をつけましょう。

#include <mbed.h>

//declare pins
DigitalOut Myled(LED1);

int main(void){
	while(1){
        Myled = !Myled;
        //wait for 500ms
        wait_ms(500);
    }    
}

mbed関連

ピンの宣言

ピンを宣言するときはそのまましてもいいけど個人的には#defineを使ったほうがすぐ変更できるので良いと思う。ただ、使いすぎるとコードが長くなるので気をつける。

#include <mbed.h>

//define PinName
#define PIN_LED LED1

//declare pins
DigitalOut Myled(PIN_LED);

int main(void){
	while(1){
        Myled = !Myled;
        //wait for 500ms
        wait_ms(500);
    }    
}

IDEとか

Atom使ってる。プラグインが多くて良さげ。フォントはRicty Diminished Discordにすると文字の区別がしやすい。

0
0
2

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
0
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?