Shop OBEX P1 Docs P2 Docs Learn Events
Propeller Backpack - No NTSC Video Output - text works — Parallax Forums

Propeller Backpack - No NTSC Video Output - text works

micromucmicromuc Posts: 11
edited 2018-03-19 21:36 in Propeller 1
I'm trying to overlay text on top of incoming video. I am getting the numbers on the screen from my program but the video signal is not making it to the output. Jumpers VID and OVL are installed. I've attached pictures of a few different test points on the board. Pictures are labeled, Video Input, Video Output, Prop pin A22, Prop pin A19, Prop pin A11. Hopefully someone can help because I'm out of ideas. Thanks...Mark


The Code that works at putting numbers on the screen:
pause 50
    TextOut = 0     'Reset the Propeller Backpack
    pause 500
    TextOut = 1
    pause 2000      'Wait for it to come out of reset             
    counter = 1

main
    SEROUT2 TextOut,84 + 32768,[dec counter,$01]    '9600 open-drain, $01=move to current screen home position  
    pause 1000
    counter = counter + 1
    if counter = 1000 then counter = 1
goto main
672 x 386 - 93K
672 x 378 - 89K
672 x 379 - 87K
672 x 394 - 88K
672 x 443 - 93K

Comments

Sign In or Register to comment.