how to use the trrs video output?

Hello,
i'm discovering the brave new world of MCU, sorry for the newbie question.
The last activity board (https://www.parallax.com/product/32912) has no VGA output but it comes with a trrs audio/video.
can i plug that to a PC monitor with RCA input ?
Anyone has a code that use this trrs video output ? Or do the example code that use the VGA still work?
i'm discovering the brave new world of MCU, sorry for the newbie question.
The last activity board (https://www.parallax.com/product/32912) has no VGA output but it comes with a trrs audio/video.
can i plug that to a PC monitor with RCA input ?
Anyone has a code that use this trrs video output ? Or do the example code that use the VGA still work?
Comments
if i connect a cable from this output to my monitor that accept composite input, can i use this code below?
otherwise is there any circuit example that i can look at?
Note: that discussion should be moved in propeller 1 forum.
CON _clkmode = xtal1 + pll16x ' System clock settings _xinfreq = 5_000_000 BASE_PIN = 27 ' DAC base pin is P12 OBJ tv : "tv_terminal" ' Declare tv_terminal object PUB start | i tv.start(BASE_PIN) ' DAC base pin is P12 tv.str(string("This is a test message...")) ' Di
https://www.parallax.com/sites/default/files/downloads/32100-Propeller-Demo-Board-Schematic-RevG_0.pdf
Insert the resistors from P12, P13, and P14 into P27, P28 and P29, (using the base pin in your code). The fourth resistor is seldom used. (Read note on schematic).
Best is to connect the resistors at the P12..P14 pins, because that is the default on most Demos.
You can find TV demos in the 'Propeller Library Demos' folder.
Andy