Skip to main content

Questions tagged [stream]

Filter by
Sorted by
Tagged with
-1 votes
1 answer
364 views

I'm trying to creaper class wraper to use an Streamobject but I've an error when I try to compile. My .hfile : #include <Arduino.h> class TestSerialListener { public: TestSerialListener(...
simon's user avatar
  • 133
-1 votes
1 answer
151 views

I am using a Bluetooth module HC-05 to Stream data from Arduino to My computer. In they computer I am using a python script to receive They specifications: Baud rate: 9600 But I am getting an error. ...
Elí Flores's user avatar
0 votes
0 answers
557 views

I have data on firebase rtdb, which i want to listen in my nodemcu. I know there are libraries available like this one which provides listeners, but i want to do it using REST API streaming as ...
aryan's user avatar
  • 11
0 votes
1 answer
3k views

I want to parse JSON response from a GET Request. I do this usually by using a String variable to store the response and later parse this string using ArduinoJSON library like shown below: #include &...
Zaffresky's user avatar
  • 183
0 votes
0 answers
57 views

I've come across an interesting yet old article within StackExchange which has great examples of sending structured variables over serial communications. The library StreamSend.h and it's source code ...
Brian's user avatar
  • 11
4 votes
0 answers
121 views

I’ve spent the past few days trying researching communication protocols and I have a few issues. With sewable electronics, you need to work with cables with a fairly high resistance that are ...
Delaney Fitzpatrick's user avatar
1 vote
0 answers
84 views

From what I read about duty cycles in the EU there is a 10% limitation (even less in some sub bands). The modules I found have a max. rate of 300 kbps. Even if you max out the duty cycle that would ...
michi's user avatar
  • 13
2 votes
0 answers
1k views

I am doing research for a project in which I need to play with camera streams. After multiple hit and trails and googling I am not getting even close to the solution for streaming ESP-32 Camera stream ...
Ishaan Puniani's user avatar
-1 votes
1 answer
285 views

I am trying to define multiple serial ports (multiple BMS management boards) and select via a global variable the port which one is active, this is the sketch I am trying to modify. https://github....
Paul Fisher's user avatar
-1 votes
2 answers
220 views

Is there way to wirelessly connect a arduino drone‘s camera and stream to a set device from 10 km away?
user59581's user avatar
0 votes
1 answer
633 views

(I'm sorry for my bad English, but I will do my best) I have a Chinese MUC which already programmed. It communicates with a LED driver chip using three wires (STB,CLK,DIN). (LED driver controls 16 ...
hatore's user avatar
  • 1
1 vote
1 answer
2k views

How should I inherit from Stream, for creating a new class MySerial able to be initialized from a Stream0 instance?. The error so far is: "cannot declare variable 'mySerial' to be of abstract type '...
Brethlosze's user avatar
1 vote
2 answers
220 views

Poking through the example code of SDFS, I saw the following: static ArduinoOutStream cout(Serial); // F stores strings in flash to save RAM cout << F("\ntype any character to start\n"); What ...
Bo Thompson's user avatar
1 vote
1 answer
1k views

I'd like to know please whether an Arduino can accept an HDMI signal from a satellite receiver, let it flow without any modification to the stream, and output it to TV?
NumberD's user avatar
  • 11
6 votes
1 answer
2k views

I googled about it, but can't find the answer. As I would guess I would have to inherit from the Print class and somehow pass to its print methods the part of my object I would like to be printed. But ...
Mykolas's user avatar
  • 165
0 votes
2 answers
3k views

I'm writing a new serial library (eRCaGuy_Peer2Peer) to allow any 2 pins on an Arduino to be used for peer-to-peer type communication between Arduinos, withOUT interrupts or timers/counters. ...
Gabriel Staples's user avatar