11,723 questions
-7
votes
1
answer
53
views
How to Regex InnnerHTML value to input text from copied InnerHTML Value to input text? [duplicate]
How to remove leading zero and kg from copied innerHTML to input field text?
from 0000300kg to 300?
Html
<button class="tmbltimbang" id="timbangmuatan" onclick="bruto()&...
0
votes
0
answers
23
views
Accessing hardware UART via unity game built for android
I would like to access the hardware serial port (tty*) , not the usb serial port(last resort if not possible), via unity, I have no experience in android development and have barely managed to get a ...
-1
votes
1
answer
46
views
How to list COM over USB ports in Powershell?
I have found this command on the internet :
PS C:\> Get-CimInstance Win32_SerialPort | Select Name, Description, DeviceID
Name Description ...
1
vote
0
answers
19
views
How to check Serial Write is complete in Raspberry Pi Python
Hi In my Project my raspberry pi act as a server and whenever the data came from the tcp client it is writing the same data in Serial Uart but when doing write operation in Serial Uart some character ...
-3
votes
0
answers
26
views
Want to convert BC1800 CellCounter Machine output into readable format in c# [closed]
I want to do interfacing one CellCounter instrument BC1800 with my existing Software. This BC1800 Machine is sending data using serial cable RS232 on Com port. And i am able to capture the responce as ...
0
votes
0
answers
21
views
Using serial port on android qemu
I'm trying to test the serial port functionality on android studio's emulator. What I'm currently doing:
On host side
I created a pair of virtual ports com3 and com4 using com0com
I tested them ...
0
votes
1
answer
35
views
Debugging ESP8266, GDB unable to connect, unrecognized item "timeout" in "qSupported" response
I'm trying to debug my code on an ESP8266 with GDB, but can't get it to connect.
ESP8266 code (gdb.ino):
#include <GDBStub.h>
void setup() {
Serial.begin( 115200 );
gdbstub_init();
...
1
vote
3
answers
58
views
How to Handle Garbage Data from Scales After USB Reconnection in a .NET Application?
I am developing a .NET application using C#. In my app, I connect to a scale via USB and retrieve weight data. Normally, I can successfully get the correct weight data. However, when I disconnect the ...
0
votes
0
answers
39
views
Accessing windows serial com port through linux docker container
Im currently writing a C# program that listen on a serial com port using System.IO.Ports.SerialPort class.
I need to run this program on a linux docker container and be able to access the serial ...
0
votes
0
answers
22
views
connecting my OrangePi Zero2 (Orange Os Arch ARM64) with Arduino Mega Pro Mini by pins or bluetooth
I would like some help with connecting my OrangePi Zero2 (Orange Os Arch[ArchLinux ARM64 based]) with an Arduino Mega Pro Mini in two ways:
TTL (rx tx pins) [no success up until now]
SPP (Bluetooth ...
0
votes
0
answers
58
views
Working with MODBUS RTU to read holding registers from a WAGO Power Measurement Module
I am attempting to create a GUI to communicate with a WAGO 3-Phase Power Measurement Module (Item No. 2857-570/024-005) to read measured values and change measurement parameters (referred to as WAGO ...
0
votes
0
answers
23
views
How to Reliably Collect Serial Port Data with Flask and React on a Dockerized Raspberry Pi?
I have a Flask server and a React frontend designed to run experiments where data is collected from a serial port. Here’s the setup:
The full application is dockerized and hosted on Raspberry Pi.
...
1
vote
0
answers
58
views
Changing Serial Port Parity at Run time Python Serial
Hi i am working with python serial project i want to change the serial port parity value at runtime it is not working properly especially in odd parity mode it is not sending correct data
import ...
-4
votes
1
answer
64
views
Programming a Datalogger - Won't create file
Context: I'm building a project for university and programming is not really my "field of expertise". It is a GUI built on C# (Visual Studio).
Porblem: I tried making a datalogger which ...
1
vote
1
answer
78
views
My C program that works with serial port hangs on read if ran for the second time
I am using Cygwin environment to build my program. Also I use the termius library. Essentially, the program opens the serial port:
fuart = open(device, O_RDWR | O_NOCTTY | O_SYNC);
Then its workflow ...