Enjoy programming more!
Kidspod is a post site which supports young programmers.
First step to join us.
Register as a member
For members

2018/07/08 15:40:30

MixJuice GET URL : kidspod.club/mj/514

LEDチカチカプログラム

LEDを点滅させるプログラムです。
光っている時間と,消えている時間が,どんどん長くなって行きます。

It is a program to flash the LED.
The time of lighting and the time of disappearing are getting longer and longer.

LED를 점멸시키는 프로그램입니다.
번쩍이는 시간과 꺼져있는 시간이 점점 길어지고갑니다.

  • 1
  • 2
  • 1
  • 2

SOURCE CODE

1 LED1:WAIT5
2 LED0:WAIT5
3 LED1:WAIT10
4 LED0:WAIT10
5 LED1:WAIT#0F
6 LED0:WAIT#0F
7 LED1:WAIT20
8 LED0:WAIT20
9 LED1:WAIT30
10 LED0:WAIT30
11 LED1:WAIT40
12 LED0:WAIT40
13 LED1:WAIT50
14 LED0:WAIT50
15 LED1:WAIT60
16 LED0:WAIT60
17 LED1:WAIT120
18 LED0:WAIT120
19 GOTO1

COMMENT

Kidspod運営チーム
Kidspod運営チーム2018/07/13 17:20:40

LED点滅プログラムは、シンプルながら色んな勉強ができて面白いですね。これはループと変数を使って、もっと短いプログラムにすることもできます。レッツチャレンジ!