I am trying to write data to a DMX receiver via USB to RS485 cable. I can see the correct data frames, but for the packet to follow the DMX protocol, I need a break and MAB signal. So my question is, is there a way to generate such signals? My thoughts were to write hi and lo signals with delays to the serial port but I have not found a way to do this in VS C#.
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in RS485
- RFID reader connected to NodeMCU via RS485 - Not Working
- Sim5360e communication over UART2
- sending and receiving frames over RS485 with Raspberry Pi
- simple serial one-to-multi protocol (Server to multi clients)
- RS485 bus on raspberry pi extension board to DMX 512 protocol
- Connecting RS485 output to Raspberry Pi[Android Things]
- RS485: Inappropriate ioctl for device
- How do I wire a 9 pin serial connection to an Arduino?
- How can I implement RS485 2 wires bidirectional communication in .NET?
- Want to read Output Frequency of VFD using Arduino Uno through MAX485
- Profibus synchronisation using Linux (Raspberry Pi)
- Tinkerforge RS485 Callback in Matlab
- UWP C# UART RS485 DetachBuffer
- Calculating modbus RTU 3.5 character time
- modbus rtu slave not responding to request and C-ERR light coming on slave
Related Questions in DMX512
- RS485 bus on raspberry pi extension board to DMX 512 protocol
- DMX (Slave) with ESP32-C3-DevKitM-1 (Searching for advise)
- I am trying to build a music visualizer but I am completely inexperienced
- Compatibility porting program
- Is there a .Net Library for DMX, specifically sACN (streaming ACN)?
- How to send UDP/art-net command to LANBOX LCX in the same network?
- writing signals to serial port
- Reading bytes from Arduino SD Card to DMX Lighting
- Artnet Packet Structure
- DMX-Interface to use to write your own DMX-Control-Software
- control of LEDs with 16bit PWM with protocol DMX512/1990 using only one DMX address
- Using libusb-win32 to communicate with USB to DMX512 interface, can't find any endpoints
- Com ports get stuck or stop sending serial communication after working for 7-8 hours
- Enttec DMX USB PRO Mk2 - Send single DMX packet
- Is there a reliable Art-Net library for Android (DMX over IP)?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There is an example (though not in .NET but you can translate it) here:
How to control DmxSimple over serial
And use the SerialPort class to send the data down your cable