-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi! Looking at the description I'm not sure if you want the AI deck to be server or client, but either is possible but currently we only support the AI deck being server. So just like the python script that receives the images, you can write your own app that connects and receives the images. If you want to do it the other way around (AI deck connects to your server, which you will probably need since you have the gateway in between) or you want to more advanced commands you will have to implement this yourself. There's lots of examples in the ESP IDF on how to do different protocols (websocket, http etc) and also how to make the ESP connect to a server. Have a look here) as a start and then merge it with our code. |
Beta Was this translation helpful? Give feedback.
Hi!
Looking at the description I'm not sure if you want the AI deck to be server or client, but either is possible but currently we only support the AI deck being server. So just like the python script that receives the images, you can write your own app that connects and receives the images.
If you want to do it the other way around (AI deck connects to your server, which you will probably need since you have the gateway in between) or you want to more advanced commands you will have to implement this yourself. There's lots of examples in the ESP IDF on how to do different protocols (websocket, http etc) and also how to make the ESP connect to a server. Have a look here) as a start and t…