News:

LATEST RELEASE:  FPP 8.4 - Download from here - https://github.com/FalconChristmas/fpp/releases/tag/8.4

+-+-

+-User

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+-Site Stats

Members
Total Members: 16845
Latest: onexbadxdodge
New This Month: 23
New This Week: 5
New Today: 0
Stats
Total Posts: 135302
Total Topics: 16947
Most Online Today: 84
Most Online Ever: 7634
(January 21, 2020, 02:14:03 AM)
Users Online
Members: 1
Guests: 64
Total: 65

Weird latency over artnet

Started by dsg123456789, April 21, 2023, 11:13:11 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

dsg123456789

I just started setting up my system, which has an F48V4-NS connected to an SRx1-PSU. I haven't touched any switches or knobs on the boards.

I am using SK6812 RGBW LEDs. My configurations are screenshot below.

When I try to push an animation from pyartnet, I can see it's sending the sacn/e131 packets at the rate I expect. However, it takes 3-6 seconds before the frame appears on the pixels, but I expect to be able to push at least 20fps. Is something misconfigured, or is there something else I need to do? I included my basic code listing below too, just in case it's helpful.



import asyncio
import logging
from pyartnet import SacnNode
import sys

logging.basicConfig(level=logging.DEBUG)

async def main():
    i = int(sys.argv[1])
    x = int(sys.argv[2])

    # Run this code in your async function
    node = SacnNode('192.168.20.119', 5568, max_fps=30)
    node.set_output_correction(None)


    channels = []
    NUM_UNI = 3
    NUM_CHANS = int(384 * 3/4 / NUM_UNI)
    for u in range(NUM_UNI):
        universe = node.add_universe(u+1)
        for l in range(NUM_CHANS):
            channel = universe.add_channel(start = l * 4+1, width=4)
            channels.append((universe, channel))

    t = 0
    dt = 0.01
    while True:
        val = [0,0,0,0]
        val[i] = int(x * t)
        for (u,c) in channels:
            #c.add_fade(val, 100)
            c.set_values(val)
        t += dt
        if t > 1 or t < 0:
            dt = -dt
            t += dt
        # GRBW
        print(f"value is {int(x*t)}")
        await asyncio.sleep(0.2)

asyncio.run(main())


MikeKrebs


Support FPP

+- Recent Topics

FPP 8.4 released! by darylc
January 15, 2025, 07:24:07 PM

Big button url question by darylc
January 14, 2025, 05:54:32 PM

Display TEXT to LED Panels form REST API by CaptainMurdoch
January 14, 2025, 11:55:25 AM

Differential Board: PSU & Enclosure by jnealand
January 14, 2025, 07:42:55 AM

wine from matrix with octoscroller control by Poporacer
January 12, 2025, 10:40:05 AM

xLights.org forum registration waiting for approval for several months. by darylc
January 11, 2025, 12:42:54 AM

FPP sequence fade by CaptainMurdoch
January 10, 2025, 08:19:33 AM

Combining multiple shows (models, sequences, etc.) into a single xLights show by JonD
January 09, 2025, 07:41:31 PM

F8 Distro Board and 36V power supplyu by JonD
January 09, 2025, 12:04:31 PM

FPP-channel & universe numbers? by JonD
January 09, 2025, 07:00:58 AM

Powered by EzPortal
Powered by SMFPacks Menu Editor Mod