News:

Server migration complete, Welcome to version 2.1.1

+-+-

+-User

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+-Site Stats

Members
Total Members: 15735
Latest: sweatyjock
New This Month: 2
New This Week: 2
New Today: 2
Stats
Total Posts: 129006
Total Topics: 15889
Most Online Today: 133
Most Online Ever: 7634
(January 21, 2020, 02:14:03 AM)
Users Online
Members: 4
Guests: 114
Total: 118

API over serial?

Started by jsamytaylor, July 21, 2022, 07:55:31 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

jsamytaylor

Ist there a way to send API commands over a serial port on a Beaglebone Controller?

I would like to make a Userinterface with an M5Stack Core2 (ESP32 based Board with Display). My Goal is to make a Userinterface where I can select Playlist to start..stop and so on. To send the commands I would use a serial port. Would be nice if there is a way to send API commands over serial communication. Maybe it is necessary to write a plugin or script?

Thanks for any answers!

dkulp

At this point, it would require a plugin.   It wouldn't be very hard to write and could easily be done in python or c++ or something.   If the UI can generate the JSON for the command, it could send that via serial and the plugin/script could just forward it directly via curl.

That said, the ESP32 has wifi built in.  Why use serial instead of over the network using the REST API?
Daniel Kulp - https://kulplights.com

jsamytaylor

Hi Daniel

I appreciate your fast reply! I used the REST API over Network before which worked very good. In this case I have a Standalone controller without Network connection. I know I could use GPIO inputs, but that would require more wiring and the flexibility is not good as controlling FPP over the API.
My Userinterface could send a JSON String over the serial port. I am not very good in coding. So writing a plugin or script is not my capability. 
Could you help me out or do you know someone who could do it for me? I am also willing to pay for the effort.

Thanks

CaptainMurdoch

I think you should be able to do this using "socat" and emulating a HTTP client on your ESP32, but it has been a while since I have messed with it.

Try the following:

sudo apg-get install -y socat
socat /dev/ttyS0,b115200,raw,echo=0 TCP:127.0.0.1:80

Change /dev/ttyS0 the proper device for the serial port and the 115200 speed to the correct value.  socat should create a two-way pipe between your serial port and the web server running on port 80.  From there, you can send HTTP requests over serial.  You might need to add ",keepalive" to the end of the TCP string.  If it works, you can create a script to run it inside a while loop in case socat dies.

#!/bin/sh

while /bin/true
do
    socat /dev/ttyS0,b115200,raw,echo=0 TCP:127.0.0.1:80
done
-
Chris

Support FPP

+- Recent Topics

Raspberry PI 4 b fan by JonB256
June 07, 2023, 09:30:09 AM

Advatek Vortex 48 channel DC controller by k6ccc
June 06, 2023, 09:31:41 AM

RS485 CAN HAT for DMX by MikeKrebs
June 05, 2023, 09:18:04 PM

colorlight 5a-75b not working with raspberry pi4B fpp by Kensington Graves
June 05, 2023, 10:09:36 AM

Multi Channel Audio by dkulp
June 05, 2023, 09:30:24 AM

Wifi help by dkulp
June 04, 2023, 12:24:56 PM

MMAL error 2 "ENOSPC" by MikeKrebs
June 03, 2023, 09:34:36 PM

Dmx by MikeKrebs
June 03, 2023, 08:53:35 PM

F48V4-NS at 40 fps using all 48 pixel output ports? by MikeKrebs
June 02, 2023, 09:36:11 PM

EEEPROM Files by shanebou24
June 01, 2023, 01:27:06 PM

Powered by EzPortal
Powered by SMFPacks Menu Editor Mod