[9]プログラミングとは?
1047 ワード
プログラムの作成-ライブラリのインストール
https://github.com/egoing/java-iotからダウンロードしてライブラリに入れます.
浮堂
IOTプログラムの作成
import org.opentutorials.iot.Elevator;
import org.opentutorials.iot.Lighting;
import org.opentutorials.iot.Security;
public class okayJava {
public static void main(String[] args) {
Stirng id = "JAVA APT 507";
// elevator call
Elevator myElevator = new Elevator(id);
myElevator.callForUp(1);
// Security off
Security mySecurity = new Security(id);
mySecurity.off();
// light on
Lighting hallLamp = new Lighting("JAVA APT 507 / HALL LAMP");
hallLamp.on();
Lighting floorLamp = new Lighting("JAVA APT 507 / HALL LAMP");
floorLamp.on();
}
}
この方法でライブラリを使用できます.さあさあ~
Reference
この問題について([9]プログラミングとは?), 我々は、より多くの情報をここで見つけました https://velog.io/@seochan99/9프로그래밍이란-무엇인가テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol