일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- transfer
- DatePicker
- 1883
- AntDesign
- Replication
- mosquitto
- allow_anonymouse
- 공인IP
- invalid data
- mosquitto.conf
- setInterval 외부 정지
- pm2 확인
- 서버동기화
- pm2 설치
- setInterval 중지
- datagridview 직접입력
- mySQL_Replication
- setInterval clear
- html #select #option #multiple
- pm2 상태 확인
- setInterval 정지
- map이 undefined가 뜰 때
- 맥 어드레스
- listener 1883
- timepicker
- 데이터테이블 데이터 넣기
- DataGridView 직접 입력
- pm2 시작
- c# datagridview 데이터 넣기
- pm2
- Today
- Total
목록TIL (4)
개발 노트
1. 새로 만들 페이지와 유사한 기존 페이지 탐색 2. 유사한 기존 페이지 복사 후 새로운 페이지명으로 변경해서 붙여넣기 3. 기본 뼈대만 남기고 코드 주석 or 삭제 (새로운 페이지에서도 쓸 것 같은 코드는 남겨두기)
MQTT : 사물인터넷 사용을 위해 개발된 TCP/IP 기반의 최적화된 가벼운 메시징 프로토콜 다수의 장치들을 연결해서 데이터 전달 가능 MQTT는 M2M, IOT를 위한 프로토콜 최소한의 전력과 패킷량으로 통신하는 프로토콜 Broker, Publisher, Subscriber 구조 특징 client MQTT의 broker에 연결된 모든 것 Broker 모든 메세지를 수신, 필터링, 메시지 구독하는 사람 결정 client에게 메세지를 보내는 역할 Subscribe topic을 지정하여 topic을 subscribe하고 있는 client에게 메세지를 보낸다 Topic MQTT의 topic은 슬래쉬(/)를 분리 문자로 사용하여 폴더 및 파일과 유사한 계층 구조를 가짐 ex) school school/clas..
const mqtt = require('mqtt') const options = { host: 호스트번호, port: 포트번호, protocol: 'mqtt', }; const client = mqtt.connect(options); client.on("connect", () => { console.log("connected" + client.connected); }) client.on("error", (error) => { console.log("Can't connect" + error); process.exit(1) }); const topic_s="#"; client.subscribe(topic_s, {qos:1}); client.on('message', (topic, message, packet)..