EYE on NPI - Analog Devices Inc MAXREFDES178 and MAX78000 episode artwork

EPISODE · Jan 18, 2024 · 9 MIN

EYE on NPI - Analog Devices Inc MAXREFDES178 and MAX78000

from Adafruit Industries · host Adafruit Industries

This week's EYE ON NPI is a cool cubic camera - it's the Analog Devices Inc. (nee Maxim Integrated) MAXREFDES178 (https://www.digikey.com/short/t4052tpj), an all-in-one vision eval board for the MAX78000 (https://www.digikey.com/en/products/detail/analog-devices-inc-maxim-integrated/MAX78000EXG/13155097). The MAX78000 is a specifically customized ARM Cortex M4 microcontroller that has a Convolution Neural Network sub-circuit. This means that it's really good at doing the kind of mathematical calculations required to do vision or audio-based machine learning inferences without the need for a heavy-duty processor like in a Single Board Computer or Internet co-processing. This makes it great for stand-alone smart camera applications - which is why the MAXREFDES178 (https://www.digikey.com/short/t4052tpj) is an excellent eval board that might even be able to be integrated in your final design. The MAXREFDES178 camera kit (https://www.digikey.com/short/t4052tpj) comes as a small hackable cube with two MAX78000s - one for video and one for audio processing. A 1.5" 240x240 resolution TFT with capacitive touchscreen, OVM7692 camera module (https://www.digikey.com/en/products/detail/omnivision-technologies-inc/OVM7692-RAAA/3190565), I2S Codec, I2S microphone, 5 buttons, Lipoly Battery, USB Type C with battery charging, and microSD card slot that can be used to load 'Apps' onto the processors. There's also a cute SWD programmer dongle that plugs into the USB so you can do full programming and step debugging of your own application. The strength of the MAXREFDES is that it demonstrates the audio and video inferencing that normally would take a Raspberry Pi-like SBC computer or an online connection for the heavy computation. But, since it's done on-chip, the power draw is much much less and the startup time is nearly instant. This makes it great for portable, battery, or even solar / power-harvesting applications (https://www.youtube.com/watch?v=TvuLv13EGlM) As with most AI products, the biggest challenge for starting out is how to train the model that will be used for inferencing. The MAXREFDES178 comes with a basic voice-detection model that covers about 20 words, or about 10 celebrity faces. However, unless you happen to be designing a paparazzi product you'll need to create the model that detects exactly what you want and then load that into the MAX78000's CNN memory. Analog Devices has a video series (https://www.analog.com/en/education/education-library/videos/video-series/understanding-artificial-intelligence.html) and GitHub documentation repo (https://github.com/MaximIntegratedAI/MaximAI_Documentation) that goes through the process of how to do the training: you can use the popular PyTorch or TensorFlow Lite environments. Note that since the CNN is in hardware, not 'bitbanged' on the main core, you do not have to use TF Lite for Microcontrollers (https://www.tensorflow.org/lite/microcontrollers) - although you could probably run the TFLiteMicro codebase if you wanted, on the MAX78000, it just wouldn't get any hardware acceleration. Creating the model will require collecting a ton of data, image or voice, and then training using a CUDA-powered desktop or cloud computer. If you're interested in edge AI development (https://www.analog.com/en/thought-leadership/the-dream-of-edge-ai.html), the MAX78000 is an excellent chip to use with a familiar ARM M4 core and tons of peripherals to support any external sensors or devices needed - no co-processor needed! There's even a Feather board available (https://www.digikey.com/en/products/detail/analog-devices-inc-maxim-integrated/MAX78000FTHR/13549063), but for quick audio/video development, the MAXREFDES178 camera kit (https://www.digikey.com/short/t4052tpj) works right out of the box and it's in stock right now at DigiKey for immediate shipment! Order today and it'll ship immediately so you'll be convolving and neuralling by tomorrow afternoon. See more in the video here https://www.youtube.com/watch?v=7Toaz-0vdIE

This week's EYE ON NPI is a cool cubic camera - it's the Analog Devices Inc. (nee Maxim Integrated) MAXREFDES178 (https://www.digikey.com/short/t4052tpj), an all-in-one vision eval board for the MAX78000 (https://www.digikey.com/en/products/detail/analog-devices-inc-maxim-integrated/MAX78000EXG/13155097). The MAX78000 is a specifically customized ARM Cortex M4 microcontroller that has a Convolution Neural Network sub-circuit. This means that it's really good at doing the kind of mathematical calculations required to do vision or audio-based machine learning inferences without the need for a heavy-duty processor like in a Single Board Computer or Internet co-processing. This makes it great for stand-alone smart camera applications - which is why the MAXREFDES178 (https://www.digikey.com/short/t4052tpj) is an excellent eval board that might even be able to be integrated in your final design. The MAXREFDES178 camera kit (https://www.digikey.com/short/t4052tpj) comes as a small hackable cube with two MAX78000s - one for video and one for audio processing. A 1.5" 240x240 resolution TFT with capacitive touchscreen, OVM7692 camera module (https://www.digikey.com/en/products/detail/omnivision-technologies-inc/OVM7692-RAAA/3190565), I2S Codec, I2S microphone, 5 buttons, Lipoly Battery, USB Type C with battery charging, and microSD card slot that can be used to load 'Apps' onto the processors. There's also a cute SWD programmer dongle that plugs into the USB so you can do full programming and step debugging of your own application. The strength of the MAXREFDES is that it demonstrates the audio and video inferencing that normally would take a Raspberry Pi-like SBC computer or an online connection for the heavy computation. But, since it's done on-chip, the power draw is much much less and the startup time is nearly instant. This makes it great for portable, battery, or even solar / power-harvesting applications (https://www.youtube.com/watch?v=TvuLv13EGlM) As with most AI products, the biggest challenge for starting out is how to train the model that will be used for inferencing. The MAXREFDES178 comes with a basic voice-detection model that covers about 20 words, or about 10 celebrity faces. However, unless you happen to be designing a paparazzi product you'll need to create the model that detects exactly what you want and then load that into the MAX78000's CNN memory. Analog Devices has a video series (https://www.analog.com/en/education/education-library/videos/video-series/understanding-artificial-intelligence.html) and GitHub documentation repo (https://github.com/MaximIntegratedAI/MaximAI_Documentation) that goes through the process of how to do the training: you can use the popular PyTorch or TensorFlow Lite environments. Note that since the CNN is in hardware, not 'bitbanged' on the main core, you do not have to use TF Lite for Microcontrollers (https://www.tensorflow.org/lite/microcontrollers) - although you could probably run the TFLiteMicro codebase if you wanted, on the MAX78000, it just wouldn't get any hardware acceleration. Creating the model will require collecting a ton of data, image or voice, and then training using a CUDA-powered desktop or cloud computer. If you're interested in edge AI development (https://www.analog.com/en/thought-leadership/the-dream-of-edge-ai.html), the MAX78000 is an excellent chip to use with a familiar ARM M4 core and tons of peripherals to support any external sensors or devices needed - no co-processor needed! There's even a Feather board available (https://www.digikey.com/en/products/detail/analog-devices-inc-maxim-integrated/MAX78000FTHR/13549063), but for quick audio/video development, the MAXREFDES178 camera kit (https://www.digikey.com/short/t4052tpj) works right out of the box and it's in stock right now at DigiKey for immediate shipment! Order today and it'll ship immediately so you'll be convolving and neuralling by tomorrow afternoon. See more in the video here https://www.youtube.com/watch?v=7Toaz-0vdIE

NOW PLAYING

EYE on NPI - Analog Devices Inc MAXREFDES178 and MAX78000

0:00 9:36

No transcript for this episode yet

We transcribe on demand. Request one and we'll notify you when it's ready — usually under 10 minutes.

API Intersection Stoplight Building a successful API requires more than just coding. It starts with collaborative design, focuses on creating a great developer experience, and ends with getting your company on board, maintaining consistency, and maximizing your API’s profitability.In the API Intersection, you’ll learn from experienced API practitioners who transformed their organizations, and get tangible advice to build quality APIs with collaborative API-first design.Jason Harmon brings over a decade of industry-recognized REST API experience to discuss topics around API design, governance, identity/auth versioning, and more.They’ll answer listener questions, and discuss best practices on API design (definition, modeling, grammar), Governance (multi-team design, reviewing new API’s), Platform Transformation (culture, internal education, versioning) and more.They’ll also chat with experienced API practitioners from a wide array of industries to draw out practical takeaways and insights you can use.H TV Podcast Industries Chris Jones, Derek O'Neill and John Harrison. TV Podcast Industries TV Podcast Industries is a podcast that provides discussions and reviews of various TV shows, including recent popular series like Alien Earth, The Sandman, The Last of Us, The Boys, and Daredevil Born Again. They also cover shows such as Ironheart, Star Trek: Picard, The Rings of Power, and many more, spanning both Marvel and DC universes, as well as other genres. Heart to Heart Podcast One on One / Next Level Studios In the Heart to Heart Podcast, we talk to some of our favorite & most interesting people in the entertainment industry so you can feel empowered and learn that even in the most challenging of industries, where there’s a will there’s a way.Whether you’re an actor, a writer, a casting director, a talent rep, or just someone interested in the behind the scene happenings of the entertainment industry, this podcast will have something for you. NOW, this isn’t just another How To podcast for actors. Plenty of those shows already exist. In Heart to Heart, every guest will share stories inspired by their sometimes winding path to success on their own terms. Revisionist History Pushkin Industries Revisionist History is Malcolm Gladwell's journey through the overlooked and the misunderstood. Every episode re-examines something from the past—an event, a person, an idea, even a song—and asks whether we got it right the first time. From Pushkin Industries. Because sometimes the past deserves a second chance.To get early access to ad-free episodes and extra content, subscribe to Pushkin+ in Apple Podcasts or at pushkin.fm/plus.iHeartMedia is the exclusive podcast partner of Pushkin Industries.

Frequently Asked Questions

How long is this episode of Adafruit Industries?

This episode is 9 minutes long.

When was this Adafruit Industries episode published?

This episode was published on January 18, 2024.

What is this episode about?

This week's EYE ON NPI is a cool cubic camera - it's the Analog Devices Inc. (nee Maxim Integrated) MAXREFDES178 (https://www.digikey.com/short/t4052tpj), an all-in-one vision eval board for the MAX78000...

Can I download this Adafruit Industries episode?

Yes, you can download this episode by clicking the download button on the episode player, or subscribe to the podcast in your preferred podcast app for automatic downloads.
URL copied to clipboard!