Forum Replies Created
-
AuthorPosts
-
Michael
KeymasterI don’t know where you got that code, but it’s just wrong. There is no start_render or print_str methods in the API.
Download the most current TVout from the web site and look at the examples and the API.Michael
KeymasterI don’t understand your design. Are you trying to do VGA or Composite video using TVOut?
TVOut generates the signal on digital pins 7 and 9. You don’t even have those pins connected in your design. How did you expect it to work if you didn’t connect the pins?I just followed the design that the TVout guy proposed, except used a 330 ohm instead of a 470 ohm. I also put a diode on each line. The 75 ohm resistor is generally not needed because there is 75 ohms of resistance in the TV between the composite input and ground.
The details of how to use TVOut are here: http://code.google.com/p/arduino-tvout/
Michael
KeymasterIt’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.
July 31, 2014 at 2:47 pm in reply to: Overlay-> Seeeduino done! ->Arduino MEGA done->Serial GPS #1969Michael
KeymasterThe 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.
July 31, 2014 at 2:45 pm in reply to: Overlay will suddenly disappear when using Object Tracking #1967Michael
KeymasterYou 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.
July 30, 2014 at 2:21 pm in reply to: Overlay-> Seeeduino done! ->Arduino MEGA done->Serial GPS #1964Michael
KeymasterKeep trying — looks like you are very close!
Michael
KeymasterYou 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.
Michael
KeymasterNo, the simple Video Experimenter cannot do that. Not even close.
We are at nootropicdesign.com, of course.
We have a store: http://nootropicdesign.com/storeMichael
KeymasterNo, 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!
Michael
KeymasterWell, 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.
Michael
KeymasterYes, 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.
Michael
KeymasterNo, it’s not compatible with the Fio. The Fio is a 3.3V board, and runs at half the speed (8MHz).
July 9, 2014 at 4:59 pm in reply to: Overlay-> Seeeduino done! ->Arduino MEGA done->Serial GPS #1943Michael
KeymasterI’m afraid I don’t know anyone doing stuff with PICs. I’m just not in that community…
July 9, 2014 at 2:39 pm in reply to: Overlay-> Seeeduino done! ->Arduino MEGA done->Serial GPS #1949Michael
KeymasterNo 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.
July 8, 2014 at 1:34 pm in reply to: Overlay-> Seeeduino done! ->Arduino MEGA done->Serial GPS #1947Michael
KeymasterYeah, 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.
-
AuthorPosts