Michael

Forum Replies Created

Viewing 15 posts - 436 through 450 (of 1,008 total)
  • Author
    Posts
  • in reply to: Problem with EthernetShied #1971
    Michael
    Keymaster

    It’s unlikely that a shield as complicated as the Ethernet shield can be driven at the same time as the Video Experimenter. Most shields are not compatible with one another because of interrupts and timers. The VE requires use of timers and constant interruption with very precise timing to generate the video.

    Michael
    Keymaster

    The overlay code is not designed for resolutions higher than the default. With such a slow microcontroller, there are only 6 instruction cycles to process each pixel. Higher resolutions just are not possible with the overlay. I can’t do the overlay any faster than it is. Higher resolution would require each pixel to be processed in 5 or 4 instruction cycles, and it just can’t.

    Michael
    Keymaster

    You can’t use Serial output while generating video. Use the pollserial library that comes with the TVout library. If the microcontroller is being forced to handle serial communication interrupts, then it will interfere with the video.

    Michael
    Keymaster

    Keep trying — looks like you are very close!

    in reply to: available resolution? #1961
    Michael
    Keymaster

    You can go up to 192×128 or maybe higher with the Seeeduino Mega.

    No, an external memory expansion would not help. You can’t access the memory fast enough. The video generation code is written in assembly, and it can’t be made any faster.

    in reply to: RCA video input for Internet video streaming #1955
    Michael
    Keymaster

    No, the simple Video Experimenter cannot do that. Not even close.

    We are at nootropicdesign.com, of course.
    We have a store: http://nootropicdesign.com/store

    in reply to: Interface shield with teensy3.0 #1957
    Michael
    Keymaster

    No, it’s only for the Arduino Uno and Duemilanove. I’ve been very clear about what boards are supported, but everyone keeps trying to use it with different hardware!

    in reply to: chipset pin output 5 volt #1956
    Michael
    Keymaster

    Well, I really can’t teach people how to code if they have no experience. If you are able to compile the Defusable Clock firmware in Arduino and upload code, then I can tell you the few lines of code you may need to change.

    in reply to: chipset pin output 5 volt #1954
    Michael
    Keymaster

    Yes, that can be done. An LED pin can be repurposed, or one of the pins on the 6 pin header at the top of the board. Special coding is required but it is easy.

    in reply to: Shield doesn’t work with Arduino Fio? #1953
    Michael
    Keymaster

    No, it’s not compatible with the Fio. The Fio is a 3.3V board, and runs at half the speed (8MHz).

    Michael
    Keymaster

    I’m afraid I don’t know anyone doing stuff with PICs. I’m just not in that community…

    Michael
    Keymaster

    No bother at all. Yes, it would be great to use that fast processor for video. You would have to port the TVout code to PIC, though. The guts of the TVout code are written in AVR assembly, so it would be a significant undertaking, but should be possible. Look around and see if anyone has done composite video generation for that processor.

    Michael
    Keymaster

    Yeah, that Due demo is impressive. I personally wouldn’t design a product for the Due, though, because there are so few out there. There are probably 100X as many customers that have Uno vs. Due.

    Michael
    Keymaster

    Yes, that’s the Seeeduino Mega. I don’t buy off of eBay, though, because the boards are often counterfeit. You can buy directly from Seeed Studio:
    http://www.seeedstudio.com/depot/Seeeduino-Mega-p-717.html

    The shipping is pretty fast.

    Michael
    Keymaster

    No, external interrupts are not enough. One of the microcontroller’s input capture pins needs to be connected. That’s not the same as an external interrupt. From my article about the problems with the Arduino Mega:

    To perform video overlay, the Video Experimenter relies on an input capture pin (to capture the exact time that the pin has changed state). Even though the ATmega1280/ATmega2560 has 4 input capture pins, none of them are connected!

    The Due will absolutely not work because it has 3.3V operating voltage.

    The Uno R3 SMD edition is functionally the same as any other Uno.

Viewing 15 posts - 436 through 450 (of 1,008 total)