News:

LATEST RELEASE:  FPP 6.3 - Download from here - https://github.com/FalconChristmas/fpp/releases/tag/6.3

+-+-

+-User

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

+-Site Stats

Members
Total Members: 15698
Latest: kronescharles
New This Month: 16
New This Week: 0
New Today: 0
Stats
Total Posts: 128631
Total Topics: 15828
Most Online Today: 39
Most Online Ever: 7634
(January 21, 2020, 02:14:03 AM)
Users Online
Members: 0
Guests: 23
Total: 23

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

F/S Arduino UNO R3 with extras by CeP
March 27, 2023, 09:47:21 PM

DMX to pneumatic solenoid by deanathpc
March 27, 2023, 07:54:22 AM

Libre SBC with oled by mel4853
March 24, 2023, 04:04:06 PM

K8-Pi - Random Pixels on by cybercop23
March 24, 2023, 10:44:49 AM

Limitations on Video file size? by Jayl
March 23, 2023, 11:06:14 AM

FPP 7 Kubernetes Error by Jlwright325
March 22, 2023, 11:11:59 AM

FPP Install on Raspberry Pi Zero W by k6ccc
March 21, 2023, 05:53:50 PM

FPP install script on Ubuntu, no video by AlexanderMedia
March 21, 2023, 09:37:23 AM

F16v3 External Power Connector by darylc
March 16, 2023, 05:25:46 PM

FPP on PC HDMI Output by AlexanderMedia
March 15, 2023, 01:17:55 PM

Powered by EzPortal
Powered by SMFPacks Menu Editor Mod