Forum Replies Created
-
AuthorPosts
-
MichaelKeymaster
No, I’m afraid that video processing on an Arduino is limited to sensing the brightness of the pixel, not the color. I don’t know of a way to do it.
There is obviously a real need in the market for more video processing/generating tools.-Mike
MichaelKeymasterThe other microphone lead goes to the input tip. Sleeve is ground, tip is 5V+signal.
MichaelKeymasterYes, you can control external devices by connecting a relay for either defuse or detonation case. See https://nootropicdesign.com/game-timer-pro/manual/#relay
-Mike
MichaelKeymasterI don’t know how you are compiling it, but make sure you specify the board as an Arduino Uno. This code is just normal Arduino code for an ATmega328 MCU.
The compilation error on line 980 implies that you are compiling for a different architecture.
#if defined __AVR_ATmega328P__
lowPowerBodOff(SLEEP_MODE_EXT_STANDBY);
#else
lowPowerBodOn(SLEEP_MODE_EXT_STANDBY); <- line 980 #endifMichaelKeymasterNo, it’s not possible to rotate everything unless the whole firmware was redesigned.
MichaelKeymasterAnswers to some of your questions:
1) yes, there is a 6-pin serial header that can be used with any FTDI serial adapter to upload code. There are plenty of images on our website that show this at the top of the board.
2) yes, settings are remembered in EEPROM. You don’t have to redo all the settings.As for changing the code, you will have to study the code and figure out what modifications you need. It will not be simple for me to tell you what to change. I’m available to do custom coding for a fee if you would like: https://nootropicdesign.com/store/product/custom-programming/
MichaelKeymasterAvatar images are loaded from Gravatar. If you create an avatar on Gravatar that is associated with your email, then many sites on the internet will pull in your avatar image automatically. My site does this.
MichaelKeymasterHi Kevin,
The output jack is not directly connected to an Arduino pin. It is connected to the digital to analog converter (DAC) chip.
-Mike
MichaelKeymasterNo, TVout is written in AVR assembly.
MichaelKeymasterHi wimbo,
Hmm, there must be a connectivity problem for the SRAM chips or the SPI select pins for the chips. I have never had this problem before.
Can you send good pictures of front and back of board to support [at] nootropicdesign.com? I’ll take a look.Debugging is difficult because the code runs really fast. Did you add debugging inside the ISR function? That won’t work. You can try reducing the sample rate to see if that helps. That will give non-ISR code more time to run.
MichaelKeymasterIt would require a total rewrite because the video generation library (TVout) is written in AVR assembly.
MichaelKeymasterI would like to design a new board (not a shield) from the ground up using a faster microcontroller but I just don’t have time. It’s a ton of work to develop a new product. Maybe someday.
MichaelKeymasterThe Lumazoid code is not going to work on an 8MHz microcontroller. A .hex file compiled for ATmega328 cannot be loaded onto an 8MHz Nano. If you want to use the source code, you will need to compile it for the target, but 8MHz is not fast enough to perform the audio analysis.
Why don’t you just buy the product from me? I did the hard part for you already.MichaelKeymasterxtal is 5mm x 3.2mm
Abracon ABM3B-16.000MHZ-B2-T
MichaelKeymasterYes, it is a 16MHz crystal. The Lumazoid is essentially an Arduino Uno.
No, you could not use an ATtiny88. The Lumazoid requires a lot of memory.
Yes, that is an ISP connector so I can program the bootloader onto the ATmega328. When I get manufactured boards from the factory, they have no bootloader. Once the ATmega328 has a bootloader, it can be programmed with Arduino over the serial connection.So, are you trying to replicate this product?
-
AuthorPosts