首页 > 解决方案 > Spring Boot 和 Socket IO Arduino 客户端

问题描述

我正在使用 Spring Boot 在服务器端工作,我想使用 Arduino 套接字 IO 客户端与我的 Spring Boot Web 服务器进行通信。

我假设我会将这个库用于 Arduino:

https://github.com/timum-viw/socket.io-client

但是当我搜索 Spring Boot 套接字 IO 服务器端实现时,我总是找到对 Web 套接字而不是套接字 IO 的引用。

使用 Spring Boot 服务器端的 Web 套接字与 Arduino 套接字 IO 客户端库进行通信会有问题吗?

标签: spring-bootsocketswebsocketsocket.ioarduino

解决方案


I know the name socketio from a javascript library that implement the web socket protocol. From a quick look at it, the arduino lib seems to be a clone for arduinos an ESP boards. So I would say, every lib that handles the web socket protocol is compatible with the Arduino socket-io implementation.


推荐阅读