Skip to main content

Questions tagged [serial]

is the process of sending data one bit at a time, sequentially, over a communication channel or computer bus. Traditionally "serial" relates to a three (or more with hardware handshaking) wire system (TIA-232-F), now using ∓25V Voltages. Technically speaking the specialized SPI (Serial Peripheral Interface) and I2C (Inter-Integrated Circuit) buses are serial communication systems as well - use one of those tags if they would be more appropriate!

0 votes
1 answer
205 views

How should I go about making a serial to ethernet server on a Pico varient?

I am trying to make a serial to ethernet server, similar to a regular pi board and ser2net, using a pico variant. I am using a Waveshare RP2040-ETH Mini Development Board, but there is very little out ...
Michael H.'s user avatar
0 votes
0 answers
121 views

Test functionality of a PL2303 USB-to-UART converter

I want to connect my computer to my raspberry pi (Model 3 A+) via serial console. Here is what I did (following the setup instructions described here): In the Raspbian OS enable serial in the ...
Josef's user avatar
  • 101
0 votes
0 answers
70 views

How to clear the serial buffer of Raspberry Pi

I use MATLAB to control the serial communication of Raspberry Pi, but its communication frequency is too fast, and the serial buffer is easily full. I want to know how to clear the serial buffer? Here ...
Jackson Zhang's user avatar
0 votes
1 answer
44 views

Code hangs when receiveing data on UART using Gpio 15(RX)

I enabled the UART interface inside the /boot/config.txt file. I know I have correctly selected the serial port because ser.write(data_to_send.encode()) gets executed successfully. The line where my ...
Osama Khalid's user avatar
0 votes
0 answers
16 views

Connecting two or more arduino boards to a single Pi board

I was wondering what are the pin configurations/connections and scripting to connect more than 1 arduino to a single raspberry Pi board via serial connection.
Syed Hassan's user avatar
0 votes
0 answers
43 views

BlueDot Serial Bluetooth server for OBD

I am building an OBD Raspberry PI car dashboard and I've been struggling to get the adapter to connect and send info. I recently learned that the rfcomm support was dropped years ago by bluez and was ...
Soham's user avatar
  • 1
0 votes
0 answers
45 views

OBD Raspberry Pi bluetooth and serial connections issues

So I've been trying to get my digital dashboard code working and I have to connect to the OBD plug to the Pi but ive run into a plethora of issues since then. The first time I did it, the OBD device ...
Soham's user avatar
  • 1
0 votes
2 answers
263 views

SOLVED Incorrect baud rate on RPI 3 serial port

I have written an app to communicate with an intelligent UPS. It works fine on a Raspberry Pi 2, but seems to operate at the wrong baud rate on a Raspberry Pi 3 model B running Raspbian bullseye. This ...
JavaLatte's user avatar
  • 119
-1 votes
1 answer
1k views

How to enable serial communication on Pi 4 using BookWorm OS?

Raspberry Pi 4 and Latest Raspbian Bookworm OS. I want to have Pi 4 communicate over serial connection using GPIO14 (BCM) and GPIO15 (BCM) or UART TX and UART RX. I have followed the same setups that ...
ThN's user avatar
  • 1,063
0 votes
0 answers
11 views

pymodus unknown message

I am using Pymodbus in Raspberry Pi for data acquisition from Modbus rtu (RS485) sensors. Other sensors worked perfectly fine so coding is ok. However one particular sensors is giving me this message ...
Brian's user avatar
  • 1
-1 votes
1 answer
53 views

ttyAMA0 serial port error

I'm trying to get gps data through ttyAMA0 serial port. Sometimes I could get gps data but I also get errors such as OSError Error11 resource unavailability. It used to be working but I get errors ...
Jooseok Lee's user avatar
0 votes
0 answers
114 views

I am trying to print "Hello World" 15 times from my Raspberry Pi Pico to a text file on my windows desktop via serial communication

Here is my code: Main.py (PICO code) import time for i in range(15): print("Hello World") time.sleep(1) Windows Desktop Python Code import serial port = "COM5" ser = ...
HEL's user avatar
  • 1
-1 votes
1 answer
2k views

Using USB port as serial UART

So I have a circuit board (IWR6843ISK) that I want to connect to RPI400 via USB serial to send and receive data. Here are some details: This board uses a USB to dual UART bridge (micro USB port). I'...
Discombobulous's user avatar
1 vote
0 answers
97 views

Transmitting Serial data via Wi-Fi from Raspberry Pi to Wi-Fi Module

I previously built two separate projects for sending/receiving data between an Arduino and a Raspberry Pi 3. One transmitted via Bluetooth (HC-05 Module on the Arduino-side to the built-in BT module ...
JoeBro391's user avatar
0 votes
0 answers
292 views

how to enable ttyAMA0 on raspberrypi 4 and how to make it to communicate with pixhawk?

I am trying to make communication between raspberrypi4 and pixhawk board to control the drone using dronekit library and to get telemetry info. I have used pin 14 and 15 for serial communication. But ...
Kavyashree T's user avatar

15 30 50 per page
1
2
3 4 5
50