일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pm2
- DatePicker
- setInterval clear
- mosquitto.conf
- timepicker
- setInterval 중지
- 맥 어드레스
- mySQL_Replication
- pm2 설치
- html #select #option #multiple
- pm2 확인
- pm2 시작
- 공인IP
- Replication
- setInterval 외부 정지
- setInterval 정지
- 데이터테이블 데이터 넣기
- c# datagridview 데이터 넣기
- allow_anonymouse
- 1883
- pm2 상태 확인
- AntDesign
- transfer
- datagridview 직접입력
- 서버동기화
- map이 undefined가 뜰 때
- mosquitto
- listener 1883
- DataGridView 직접 입력
- invalid data
- Today
- Total
목록분류 전체보기 (738)
개발 노트
mysql-next.js로 연결 farmStateItem 네개 제대로 연동하기 농장 상세페이지 mqtt연동하기
mqtt - npm (npmjs.com) mqtt A library for the MQTT protocol. Latest version: 5.3.6, last published: 2 days ago. Start using mqtt in your project by running `npm i mqtt`. There are 2650 other projects in the npm registry using mqtt. www.npmjs.com import { count, log } from 'console'; import mqtt, { MqttClient } from 'mqtt'; const mqttUri = 'ws://127.0.0.1:9001'; const options: mqtt.IClientOptions..
connected error해결하기
RMAN/WEB데이터를 제외한 나머지 데이터 업데이트 시에만 업데이트 순으로 정렬하게 변경 1. 특정토픽일 때 정렬하도록 정규식을 사용하여 와일드카드 문자를 사용할 수 있게 적용 export const extractTimeFromSpecificTopics = (topic: string, message: string): string => { const specificTopics = ['dawoon/Robot/#', 'dawoon/Feeder/#', 'dawoon/SMARTGATE/#']; // 토픽이 특정 토픽에 속하면 시간을 추출, 그렇지 않으면 빈 문자열을 반환 if (specificTopics.some((specificTopic) => new RegExp(`^${specificTopic.replace..
조건처리로 기기 여러개 일때 여러개 나오게 처리하기 기기정보 값 제대로 불러오게 연동하기 시간정보(정렬기준에서 RMAN/WEB)의 시간값 제거 농장상세정보 데이터 연동하기 및 링크 연결
1. 버튼 컴포넌트 제작 import { useButtonStore } from "@/store/useButtonStore"; const SortButton: React.FC = () => { const {activeSortButton, setActiveSortButton} = useButtonStore() const handleClick = (e: React.MouseEvent): void => { const sort = e.currentTarget.dataset.sort; if (!sort) return switch (sort) { case 'update': setActiveSortButton(sort); break; case 'farmName': setActiveSortButton(sort); br..