
JAVA1 - 9. 프로그래밍 예제 IoT
·
youtube.com|user|egoing2/JAVA1
Ex) IoT 프로그램 만들기 package Programming; import org.opentutorials.iot.Elevator; import org.opentutorials.iot.Lighting; import org.opentutorials.iot.Security; public class OkJavaGoInHome{ public static void main(String[] args) { // Elevator call, JAVA 아파트 117호가 소속된 엘리베이터가 호출해서 1층으로 내려가기 시작 Elevator myElevator = new Elevator("JAVA APT 117"); myElevator.callForUp(1); // Security off, 집의 보안 해제 Security..