Serial Port Programming on Linux using Visual Basic.net and .NET Platform
Following the introduction of the open-source .NET platform by the .NET Foundation, supported by Microsoft, it became possible to develop .NET applications on platforms other than Windows, including
Native Serial Port Programming on Linux (Unix) system using C and terminos API
Submitted by Rahul.Sreedharan on 7 June 2015 - 11:17am
tutorial on programming the serial port on linux distros like ubuntu,fedora ,mint linux,debian
Hello Folks,
This is a tutorial on how to program the Serial Ports on your Linux box.Serial Ports are nice little interfaces on the PC which helps you to interface your embedded system projects using a minimum number of wires.In this tutorial we will write a small program that will send and receive ASCII characters to a microcontroller development board.
Serial communication using Python (PySerial) and Arduino/AVR/PIC Micro on Linux
A short tutorial on how to setup a serial port communication between a Linux PC/Laptop and a AVR/PIC/MSP430 Microcontroller or Arduino using pySerial and Python.
Serial Port Datalogging to a CSV file on Linux using Arduino Uno and Python
In this tutorial we will learn how to build a serial port based data logging program that will log data coming from a Arduino to a CSV file (Comma Separated Variable file) on a Linux system.
Capturing and Handling OS signals like SIGINT (CTRL-C) in Python
We will learn How to capture and handle operating system signals like SIGINT and SIGBREAK on Linux and Windows OS's (Windows 10,11) to control the flow of your python script during execution.