-
echo.mbedcloudtesting.com 서비스가 종료 되었습니다.Socket 통신 2025. 1. 19. 22:30
안녕하세요?
현재 소켓통신(TCP/UDP) 테스트 서버로 사용했던 echo.mbedcloudtesting.com 서비스가 종료되었습니다.
ARM IoT RTOS 플랫폼 오랫동안 서비스 해오던 mbed(mbed RTOS)가 아래와 같은 일정으로 종료되어 하위 서비스들도 순차적으로 종료되는 것으로 보입니다.
자세한 내용은 아래 공지 참고 하시기 바랍니다.
https://os.mbed.com/blog/entry/Important-Update-on-Mbed/
Important Update on Mbed | Mbed
This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies. If you are not happy with the use of these cookies, please review our Cookie Policy to learn how they can be disabled. By disabling coo
os.mbed.com
이에 따라 LTE CATM1 embedded Modem에 사용하는 모듈 제조사인 Murata에서 제공하는 echo server를 알려 드립니다.
TCP echo server IP : 34.192.142.126
TCP echo server PORT : 7
UDP echo server IP : 34.192.142.126
UDP echo server PORT : 7
Arduino Source Code 수정 (아래 코드로 수정 후 테스트)
/* Enter a DNS address to get an IP address */
char IPAddr[] = "34.192.142.126";
//아래 DNS to IP는 사용하지 않습니다.
#if 0
while (1) {
if (TYPE1SC.getIPAddr("echo.mbedcloudtesting.com", IPAddr, sizeof(IPAddr)) == 0) {
DebugSerial.print("IP Address : ");
DebugSerial.println(IPAddr);
break;
} else {
DebugSerial.println("IP Address Error!!!");
}
delay(2000);
}
#endif
int _PORT = 7;
char sckInfo[128];
/* 1 :TCP Socket Create ( 0:UDP, 1:TCP ) */
if (TYPE1SC.socketCreate(1, IPAddr, _PORT) == 0)
DebugSerial.println("TCP Socket Create!!!");
... 기존 코드 그대로 ...
LTE-CATM1 내장형 모뎀 대량 구매 상담, 외주 개발, 협업 문의
(주)코드주
장병남 대표 010-8965-1323 rooney.jang@codezoo.co.krLTE-CatM1 내장형 모뎀 / 사물인터넷 통신모듈
사물인터넷 개발을 위한 LTE 모듈입니다. / CodeZoo / 사물인터넷 통신모듈 / 유심은 상품상세의 링크에서 별도 구매가 필요합니다.
www.devicemart.co.kr
iot유심 : codezoo
[codezoo] IoT Global SIM, IoT Connectivity, IoT Device
smartstore.naver.com
'Socket 통신' 카테고리의 다른 글
아두이노에서 TCP소켓 실시간 수신제어 방법 (0) 2025.01.26 Voice AI 모듈과 LTE CATM1을 이용한 작업 데모 (0) 2024.02.22 언제든지 데이터를 수신 받아서 처리하고 싶어요. (0) 2022.11.21 짧은 질문, 긴 답변 (with socket통신) (0) 2022.02.24 Cellular Library 개발 그리고 포팅 두번째 이야기 (0) 2021.09.25