Podcasts about arduino nano

  • 16PODCASTS
  • 26EPISODES
  • 27mAVG DURATION
  • 1MONTHLY NEW EPISODE
  • Nov 4, 2025LATEST

POPULARITY

20172018201920202021202220232024


Best podcasts about arduino nano

Latest podcast episodes about arduino nano

Hacker Public Radio
HPR4502: Cheap Yellow Display Project Part 3: Reverse beacon network

Hacker Public Radio

Play Episode Listen Later Nov 4, 2025


This show has been flagged as Clean by the host. Hello, again. This is Trey. Welcome to part 3 in my Cheap Yellow Display (CYD) Project series. You can find Part 1 in episode 4472 and Part 2 in episode 4488. We previously left our handy hero searching for a solution to an amateur radio signal propagation dilemma, while he is trying to become proficient with Morse code. The CYD technology is simmering in the back of his brain – an answer in search of a problem. Hah! I love trying to create the feel of a vintage radio or television series with the intro and outro for these episodes. But I am by no means the hero. I am simply Trey – a grumpy old man and tinkerer. Instead, the real hero in this episode is Keith VE3SVQ-THE SHAKY KEY on YouTube. So.... Let's see. Where were we? Oh yes. I have been trying to learn Morse code -.-. --.- -.-. --.- (CQ CQ) That was me, tapping out "CQ CQ" in Morse code using the practice set I keep on my desk. This consists of a set of code paddles, connected to an Arduino Nano, which I built several years ago based what I learned watching Code Practice Oscillator; Aka: The Three Arduinos on Jmhrvy1947's YouTube Channel, and based on the code from his GitHub https://github.com/jmharvey1/ArduinoCPO . I did need to make modifications, both to support the Ardunio Nano on which I chose to run it, and for my own sanity, as the way that I learned to write code for Ardunio is very different. I focus on readability and flexibility. You can see these changes on my own GitHub ( https://github.com/jttrey3/PracticeOscillator/blob/main/PracticeOscillator.ino ) Anyway, I have been studying. I have been watching videos. I have been practicing. I might actually be learning some of this stuff. If you are interested in more details about the resources I am using, leave a comment for this episode, or drop me an email using the address in my profile, and I may record an episode about it. The result is that I have been learning. But also, the google and YouTube algorithms have been learning about me. And they have started to feed me more videos about Morse code. It is both helpful, and super creepy at the same time. So one day, when I opened YouTube, a title in my feed caught my eye. " NEW CW OP USE THE REVERSE BEACON NETWORK TO IMPROVE YOUR CODE ". I said to myself, "Self, this could be interesting." I watched Keith's video and learned about the Reverse Beacon Network . According to their website, "The Reverse Beacon Network (RBN) is a revolutionary new idea. Instead of beacons actively transmitting signals, the RBN is a network of stations listening to the bands and reporting what stations they hear, when and how well." Let's pause for a second and discuss amateur radio beacons. These are stations which repeatedly broadcast their identity on dedicated frequencies. Other operators around the world, who hear a beacon, can evaluate the signal propagation between their station and the beacon location. The RBN is just the opposite. Here, the station operator can transmit a test signal with their call sign, using CW or other digital modes. Then, they can look at the RBN website to see which RBN listening stations received their transmission, and even get a signal report. On the main page of the RBN website, one can observe a world map with paths showing where signals were received, and where they originated based on the registered grid square of the originating call sign. The table displayed below the map reveals the sending and receiving call signs, their distance apart (In miles or kilometers), the frequency, the mode, the type of transmission, the signal to noise ratio, the speed of the transmission, and the time/date using UTC. This information is collected by a network of volunteer reverse beacon receiving stations all over the world, which monitor the various radio bands, decode transmissions of CW (Morse code), RTTY (Radio Teletype), and PSK31 or PSK63 (Digital modes using Phase Shift Keying). These receiving stations report what they receive as well as the signal strength back into the Reverse Beacon Network to be recorded and published over the internet. Dave Casler discussed the RBN back in 2016 on his YouTube video The Ham Radio Reverse Beacon Network, AD#32 . This gives very good detail of how the network works. This sounds like exactly what I have been looking for. All I need to do is come up with a way to reliably, accurately, and consistently transmit "CQ CQ CQ TEST DE" followed by my call sign three times at a constant 20 words per minute (WPM). If I can do this a few times, I can then check the RBN to see where I was received. By including the "TEST" string, recipients know that I do not wish to start a conversation. I can get accurate reporting of where my signal is going and how strong it is. But remember that my morse code skills are still inadequate. And my radios do not have "Keyer memories" like those which can be found in higher end transceivers like the Icom 7300, enabling programmed messages to be sent at the touch of a button. But there is a fairly inexpensive solution to this problem. One which has been nagging at the back of my mind. Maybe, I could use the Cheap Yellow Display to effectively add "Keyer memory" to any of my radios by simply plugging it in to the code key input port. These stored messages could be transmitted by simply touching their specific icon on the touch screen. Now we have a plan. But how will we do it? What else will we need to learn? Will it even work? Tune in to the next episode in the series to find out the answers to some of these questions and more! Provide feedback on this episode.

Hacker Public Radio
HPR4497: fixing 328eforth

Hacker Public Radio

Play Episode Listen Later Oct 28, 2025


This show has been flagged as Clean by the host. Table of Contents ───────────────── greetings links to software hardware install check it works now the fix outro 0 greetings ═══════════════════ continuation from episode 4388, review of the book the Arduino controlled by eforth by dr chen-hanson ting 1 links to software ═══════════════════ https://github.com/PeterForth/DR-TING-OFFETE-SVFIG-MIRROR, 328eforth source code https://github.com/Ro5bert/avra, opensource assembler https://www.engbedded.com/fusecalc/, configuration fuse calculator https://github.com/avrdudes/avrdude, flashing software https://github.com/oh2aun/flashforth, terminal shell programs 2 hardware ══════════ programmer, avrisp2 recommended, build your own https://www.hackerpublicradio.org/eps/hpr2799/index.html Arduino UNO R3, Arduino Nano 3 install ═════════ download 2159_328eforth.zip unzip that file then cd into it build assembler file, avra 328eforth220.asm 50+ warnings that avra generates because it pads out the words with null characters in order to get the write size for each word an over view of whats going on in the build process flashing process from the book, avrdude -p m328p -c avrisp2 -e -U flash:w:328eforth220.hex:i -U lfuse:w:0xff:m -U hfuse:w:0xd8:m -U efuse:w:0xfd:m what i use, avrdude -p m328p -c avrisp2 -e -U flash:w:328eforth220.hex:i -U lfuse:w:0xe2:m -U hfuse:w:0xd8:m -U efuse:w:0xfd:m 4 check it works ════════════════ open terminal and plug in board, or reset board you should see, 328eforth v2.20 if you hit the return key you'll get an ok 5 now the fix ═════════════ clues from turnkey flush+ : flush+ ( -- ) context @ context i! cp @ cp i! dp @ dp i! last @ last i! flush ; flush+ at the terminal prompt saves words,updates the memory pointers saving words across reboots now you can save newly defined words across reboots 6 outro ═══════ You're currently going through a difficult transition period called, "Life."Provide feedback on this episode.

Electromaker Presents: Meet a Maker
Arduino Nano R4, Bela Gem Funded, Nordic WiFi 6 Magic, and More!

Electromaker Presents: Meet a Maker

Play Episode Listen Later Aug 19, 2025 39:21


This week's Electromaker Show is now available on YouTube and everywhere you get your podcasts! Welcome to the Electromaker Show episode 171! The Electromaker Show returns! Today we look at the wonderful Bela Gem, a music and sound coding platform based on the PocketBeagle 2, Discover the nRF70x series from Nordic Semiconductor, and learn about the new Arduino Nano R4 from our in house engineer Robin Mitchell! Tune in for the latest maker, tech, DIY, IoT, embedded, and crowdfunding news stories from the week.   Watch the show! We publish a new show every week. Subscribe here: https://www.youtube.com/channel/UCiMO2NHYWNiVTzyGsPYn4DA?sub_confirmation=1 We stock the latest products from Adafruit, Seeed Studio, Pimoroni, Sparkfun, and many more! Browse our shop: https://www.electromaker.io/shop Join us on Discord! https://discord.com/invite/w8d7mkCkxj​ Follow us on Twitter: https://twitter.com/ElectromakerIO Like us on Facebook: https://www.facebook.com/electromaker.io/ Follow us on Instagram: https://www.instagram.com/electromaker_io/ Featured in this show: Bela Gem and Gem Multi on Crowd Supply Bela Realtime Audio Programming Free Course Mathpad on Crowd Supply Nordic nRF7002, 7001, 7000 and modules New EM series: Behind the Tech! Product of the Week: Arduino Nano R4  

Adafruit Industries
EYE ON NPI - Arduino Nano R4 System on Module

Adafruit Industries

Play Episode Listen Later Aug 14, 2025 8:48


This week on EYE ON NPI we're featuring some open source hardware from one of our favorite hardware manufacturers! It's the Arduino Nano R4 System on Module (https://www.digikey.com/en/product-highlight/a/arduino/nano-r4) a miniaturized version of the Arduino UNO R4 and Minima (https://blog.adafruit.com/2023/07/27/eye-on-npi-arduino-uno-r4-minima-and-uno-r4-wifi-boards-digikey-arduino-digikey-adafruit/) versions we covered on EYE ON NPI about two years ago! taking a cue from popular 'castellated single side' PCB proto boards on the market, the Nano comes in two options, one with headers (https://www.digikey.com/en/products/detail/arduino/ABX00143/26766495) for easy installation into existing Arduino Nano expansion kits or breadboards, and one with reflowable castellations (https://www.digikey.com/en/products/detail/arduino/ABX00142/26766490) The Arduino Nano (https://www.digikey.com/en/products/detail/arduino/A000005/2638989) is second only to the UNO as the definitive Arduino board that 'everyone got started with'. Many folks would start with the chunky UNO and then migrate to the Nano to get something that plugs into a breadboard for compact assembly. With a USB connector on one end, button and LEDs and programming header on the top, this board powered tens of thousands of builds. So it's not surprising that Arduino iterated on this design with a wide variety of chips like the RP2040 (https://www.digikey.com/en/products/detail/arduino/ABX00052/14123941) and ESP32 (https://www.digikey.com/en/products/detail/arduino/ABX00092/21219771) The latest generation is the Renesas RA4M1 series - which updates the original ATmega328 8-bit microcontroller to a beefy Cortex M4 with FPU. You get 48MHz clock, 256KB of Flash, 32KB of SRAM, ADC, DAC, CAN, captouch and other extras. The FPU in particular makes it a nice upgrade to the cortex M0/M0+. The best part is that with the 5V logic support of the R7FA4M1AB3CFM (https://www.digikey.com/en/products/detail/renesas-electronics-corporation/R7FA4M1AB3CFM-AA0/10447195), it makes for a great drop-in replacement when a 3V logic chip like the RP2040/ESP32 won't work as well. Plus you get lots of nice linear ADCs, the RP2040 only has 4 and the ESP32's are non-linear and sometimes don't work when WiFi is active. We also love that they added a Qwiic (https://www.sparkfun.com/qwiic) connector on the end! We use this for all our Stemma QT sensors, and between the many companies that have joined in the ecosystem there are easily a thousand different ons/displays/accessories that can plug in directly for instant expansion. If you want to get the latest Nano from the manufacturer of genuine Arduino boards, DigiKey is a authentic distributor and has tons of the Arduino Nano R4 (https://www.digikey.com/short/3brjrnjp) in stock right now for (https://www.digikey.com/en/products/detail/arduino/ASX00061/26744081) immediate shipment! Pick from the castellated flat or soldered-header variety, and don't forget to also grab some Arduino Nano accessories to get your design prototyped fast. Order today and your Nano will fly out of the DigiKey warehouse and arrive at your doorstep by tomorrow morning.

Electromaker Presents: Meet a Maker
Raspberry PI 500 released! Arduino Nano Matter released! AI Scale... prototyped!

Electromaker Presents: Meet a Maker

Play Episode Listen Later Dec 17, 2024 28:24


This week's Electromaker Show is now available on YouTube and everywhere you get your podcasts! Welcome to the Electromaker Show episode 164! New gear bonanza! #RaspberryPi Monitor, #Pi500 released, #Arduino Nano #Matter arrives (with some incredible demos including a #DIY #Thread router) and an amazing #AI Macro scale that sees the food it weighs! Tune in for the latest maker, tech, DIY, IoT, embedded, and crowdfunding news stories from the week.   Watch the show! We publish a new show every week. Subscribe here: https://www.youtube.com/channel/UCiMO2NHYWNiVTzyGsPYn4DA?sub_confirmation=1 We stock the latest products from Adafruit, Seeed Studio, Pimoroni, Sparkfun, and many more! Browse our shop: https://www.electromaker.io/shop Join us on Discord! https://discord.com/invite/w8d7mkCkxj​ Follow us on Twitter: https://twitter.com/ElectromakerIO Like us on Facebook: https://www.facebook.com/electromaker.io/ Follow us on Instagram: https://www.instagram.com/electromaker_io/ Featured in this show: The Raspberry Pi500 and Pi Monitor are here! Jeff Geerling's Pi500 Teardown The Arduino Nano Matter has landed! Arduino Docs: Open Thread Border Router with Nano Matter & ESP32 Show Sponsor: Nordic Semiconductor Nordic Semiconductor PMIC Demo Tracking Calories and Macros using AI!

Electromaker Presents: Meet a Maker
Quake on an Arduino Nano Matter, new Raspberry Pi SSD kits, Nordic nRF54L series, and more!

Electromaker Presents: Meet a Maker

Play Episode Listen Later Oct 25, 2024 27:55


This week's Electromaker Show is now available on YouTube and everywhere you get your podcasts! Welcome to the Electromaker Show episode 160! This week we see a jaw dropping Quake port on an #Arduino Nano #Matter board, learn about #raspberrypi putting out branded SSDs and HAT+ kits, dive into Nordic's new nRF54L15 chip for #BLE, plus much more! Tune in for the latest maker, tech, DIY, IoT, embedded, and crowdfunding news stories from the week.   Watch the show! We publish a new show every week. Subscribe here: https://www.youtube.com/channel/UCiMO2NHYWNiVTzyGsPYn4DA?sub_confirmation=1 We stock the latest products from Adafruit, Seeed Studio, Pimoroni, Sparkfun, and many more! Browse our shop: https://www.electromaker.io/shop Join us on Discord! https://discord.com/invite/w8d7mkCkxj​ Follow us on Twitter: https://twitter.com/ElectromakerIO Like us on Facebook: https://www.facebook.com/electromaker.io/ Follow us on Instagram: https://www.instagram.com/electromaker_io/ Featured in this show: Free Mouser/Analog Devices webinar coming up!  Product of the Week: ReSpeaker 2-mics HAT Nordic nRF54L announced! Nordic nRF Comparison chart from Michael Bychko Quake on an Arduino Nano Matter Board? Raspberry Pi launch branded SSDs and kits

Electromaker Presents: Meet a Maker
Arduino TinyML board, Nordic's Arduino Comptible Wifi 6 expansions, ESP32 Rover, and More!

Electromaker Presents: Meet a Maker

Play Episode Listen Later Nov 17, 2023 26:28


This week's Electromaker Show is now available on YouTube and everywhere you get your podcasts! Welcome to the Electromaker Show episode 129! This week we discover space with CircuitMess, check out Nordic's new Wi-Fi 6 expansion cards, and learn about the Arduino Nano 33 BLE Sense - our prodcut of the week! Tune in for the latest maker, tech, DIY, IoT, embedded, and crowdfunding news stories from the week.   Watch the show! We publish a new show every week. Subscribe here: https://www.youtube.com/channel/UCiMO2NHYWNiVTzyGsPYn4DA?sub_confirmation=1 We stock the latest products from Adafruit, Seeed Studio, Pimoroni, Sparkfun, and many more! Browse our shop: https://www.electromaker.io/shop Join us on Discord! https://discord.com/invite/w8d7mkCkxj​ Follow us on Twitter: https://twitter.com/ElectromakerIO Like us on Facebook: https://www.facebook.com/electromaker.io/ Follow us on Instagram: https://www.instagram.com/electromaker_io/ Featured in this show: Maxwell James Tetris Phone Case Nano POTW Nordic releases the nRF7002 EK Shield and Expansion Board Arduino Streamline their Filesystem Libraries GeekClub x Circtuimess Rover on Kickstarter MicroLua: Lua on the RP2040

Electromaker Presents: Meet a Maker
Arduino Nano ESP32, RP1, M5Dial and much much more!

Electromaker Presents: Meet a Maker

Play Episode Listen Later Oct 11, 2023 40:18


This week's Electromaker Show is now available on YouTube and everywhere you get your podcasts! Welcome to the Electromaker Show episode 124! This week our product of the week is the Arduino Nano ESP32 - yes, everyone's favorite SoC on the world's most loved development board. We also find out more about the RP1 from Raspberry Pi, see an amazing new rotary encoder devboard from M5Stack, and return to Crowd Supply for Funding Website Things! Tune in for the latest maker, tech, DIY, IoT, embedded, and crowdfunding news stories from the week.   Watch the show! We publish a new show every week. Subscribe here: https://www.youtube.com/channel/UCiMO2NHYWNiVTzyGsPYn4DA?sub_confirmation=1 We stock the latest products from Adafruit, Seeed Studio, Pimoroni, Sparkfun, and many more! Browse our shop: https://www.electromaker.io/shop Join us on Discord! https://discord.com/invite/w8d7mkCkxj​ Follow us on Twitter: https://twitter.com/ElectromakerIO Like us on Facebook: https://www.facebook.com/electromaker.io/ Follow us on Instagram: https://www.instagram.com/electromaker_io/ Featured in this show: Product of the Week: Arduino Nano ESP32 More Pi 5 development goodies: RP1 ESP32 based Gesture remote MQTT Anywhere Giveaway Winner announced! Crowd Supply Lightning Round: PolyKybd AI in a box: Offline LLM assistant HaxaPhone Update! Mini robot Mic Swarms: M5 Stack rotary encoder screen with ESP32

MLOps.community
From Arduinos to LLMs: Exploring the Spectrum of ML // Soham Chatterjee // MLOps Podcast #162

MLOps.community

Play Episode Listen Later Jun 20, 2023 44:49


MLOps Coffee Sessions #162 with Soham Chatterjee, From LLMs to TinyML: The Dynamic Spectrum of MLOps co-hosted by Abi Aryan. // Abstract Explore the spectrum of MLOps from large language models (LLMs) to TinyML. Soham highlights the difficulties of scaling machine learning models and cautions against relying exclusively on open AI's API due to its limitations. Soham is particularly interested in the effective deployment of models and the integration of IoT with deep learning. He offers insights into the challenges and strategies involved in deploying models in constrained environments, such as remote areas with limited power and utilizing small devices like Arduino Nano. // Bio Soham leads the machine learning team at Sleek, where he builds tools for automated accounting and back-office management. As an electrical engineer, Soham has a passion for the intersection of machine learning and electronics, specifically TinyML/Edge Computing. He has several courses on MLOps and TinyMLOps available on Udacity and LinkedIn, with more courses in the works. // MLOps Jobs board https://mlops.pallet.xyz/jobs // MLOps Swag/Merch https://mlops-community.myshopify.com/ // Related Links --------------- ✌️Connect With Us ✌️ ------------- Join our slack community: https://go.mlops.community/slack Follow us on Twitter: @mlopscommunity Sign up for the next meetup: https://go.mlops.community/register Catch all episodes, blogs, newsletters, and more: https://mlops.community/ Connect with Demetrios on LinkedIn: https://www.linkedin.com/in/dpbrinkm/ Connect with Abi on LinkedIn: https://www.linkedin.com/in/goabiaryan/ Connect with Soham on LinkedIn: https://www.linkedin.com/in/soham-chatterjee

Ingenios@s de Sistemas
Episodio 103 - Proyecto: 5 Adruino 2

Ingenios@s de Sistemas

Play Episode Listen Later Sep 7, 2022 5:43


Hoy es Miercoles 7 de Septiembre y es miércoles de proyectos Máquina de hacer cerámica con almidón de maíz Construir un torno de alfarero es un proyecto relativamente sencillo. Construir un dispositivo para alfarería de arcilla de almidón de maíz, respetuosa con el medio ambiente, es más complicado. Y usar las piezas recuperadas de un viejo reproductor de CD y una impresora ya es llevar las cosas a otro nivel, pero así es exactamente cómo surgió esta ingeniosa creación impulsada por el Arduino Mega 2560. El viejo reproductor de CD hace girar la pieza para el trabajo manual, mientras que los motores de la impresora se utilizan para añadir detalles a la pieza terminada. Hecho por: Guillermo Perez Guillen Más información en: Hackaday.io Acceso de seguridad En este tutorial se explica el funcionamiento de un lector RFID y cómo este puede ser la base de un sistema de seguridad. Necesitas un Arduino Uno, un chip breakout de lector RFID y algunas tarjetas RFID/NFC. El proyecto está bien documentado y es fácil de construir. Hecho por: Aritro Mukherjee Más información en: Arduino Project Hub. Robot de dibujo Aquí tienes un proyecto fácil y divertido, apto para principiantes. Aunque el robot de dibujo tenga el aspecto de una solución casera, en realidad es preciso, fácil de construir y muy barato. Podrás fabricar las piezas necesarias con tu impresora 3D y un Arduino Uno se encargará de todos los movimientos. Hecho por: DAZ projects Más información en: Arduino Project Hub Velocímetro ¿Quieres saber a qué velocidad se mueve una pelota de tenis, tu perro o tu coche? Con un Arduino Nano y un sensor de ultrasonidos puedes construir este pequeño velocímetro. Mide la distancia de un objeto en movimiento en el intervalo de 1 segundo y, a continuación, calcula el movimiento del objeto en cm/s. Hecho por: mircemk Más información en: Arduino Project Hub Radar Con un poco de ayuda de un sensor de ultrasonidos, un trozo de cartón y un pequeño servomotor, necesario para hacer rotar todo el conjunto, puedes construir una pequeña estación de radar portátil. Conéctala a una pantalla para ver los datos de los gráficos en verde fluorescente, al más puro estilo ochentero. Hecho por: Dejan Más información en: How To Mechatronics

Go Time
Go on hardware: TinyGo in the wild

Go Time

Play Episode Listen Later Sep 30, 2021 69:31 Transcription Available


In this episode, we will be exploring the tiny world of Go and Hardware. We are joined by three gophers, Vladimir Vivien, Tobias Theel, and Ron Evans, who will be discussing the use of Linux API (V4L2) to control video hardware and capture image data in realtime, programming Bluetooth devices, working on WiFi communication using an Arduino Nano 33 IoT NINA chip, and much more.

Changelog Master Feed
Go on hardware: TinyGo in the wild (Go Time #199)

Changelog Master Feed

Play Episode Listen Later Sep 30, 2021 69:32 Transcription Available


In this episode, we will be exploring the tiny world of Go and Hardware. We are joined by three gophers, Vladimir Vivien, Tobias Theel, and Ron Evans, who will be discussing the use of Linux API (V4L2) to control video hardware and capture image data in realtime, programming Bluetooth devices, working on WiFi communication using an Arduino Nano 33 IoT NINA chip, and much more.

Survival Hacking
SH89 LedCade

Survival Hacking

Play Episode Listen Later Sep 28, 2021 19:46


Un interessante progetto che mi ha incuriosito moltissimo. Un micro cabinato con uno schermo da 8x8 pixel in grado di eseguire alcuni semplici giochi. Lo sapete che una matrice di 8x8 pixel è molto meno di quanto occupi un solo carattere a video ?Link al video: https://youtu.be/QudulUfM3zQ

Show and Tell
SHOW and TELL 5/26/2021

Show and Tell

Play Episode Listen Later May 26, 2021 26:10


SHOW and TELL 5/26/2021 #ShowandTell ------------------------------------------------------------- Shawn (Digi-Key) @1:00 - Pico sd card MicroPython Tim @6:34 - Designio on Adafruit.io web hooks & CircuitPython Scott @8:53 - Feather NRF5240 on glider app, BLE workflow Noe & Pedro @11:12 - USB adapter shell Jeff @12:45 - ISS space station location on RGB matrix using ESP32S2 John Park @14:18 -neo trinkey 2-note music player Liz @16:00 - Arduino Nano onboard LED counter using CircuitPython Matt @17:05 - 12 vault lamp robot Bill @19:16 - EanSail switches

Adafruit Industries
SHOW and TELL 5/26/2021

Adafruit Industries

Play Episode Listen Later May 26, 2021 26:10


SHOW and TELL 5/26/2021 #ShowandTell ------------------------------------------------------------- Shawn (Digi-Key) @1:00 - Pico sd card MicroPython Tim @6:34 - Designio on Adafruit.io web hooks & CircuitPython Scott @8:53 - Feather NRF5240 on glider app, BLE workflow Noe & Pedro @11:12 - USB adapter shell Jeff @12:45 - ISS space station location on RGB matrix using ESP32S2 John Park @14:18 -neo trinkey 2-note music player Liz @16:00 - Arduino Nano onboard LED counter using CircuitPython Matt @17:05 - 12 vault lamp robot Bill @19:16 - EanSail switches

Adafruit Industries
wow much doge on wifi of arduino nano rp2040 connect

Adafruit Industries

Play Episode Listen Later May 22, 2021 1:00


the arduino nano rp2040 connect has much wifi using esp32 co-processor, wow! lets use circuitpython to connect to interwebs and read dogecoin price then display on oled. its very working - amaze! thanks to great displayio library, we have pretty comic sans fonts. circuitpython-requests interface makes json data so easy even puppers could do it. check out pr with code example here https://github.com/adafruit/circuitpython/pull/4802 #adafruit #arduino #dogecoin Visit the Adafruit shop online - http://www.adafruit.com ----------------------------------------- LIVE CHAT IS HERE! http://adafru.it/discord Adafruit on Instagram: https://www.instagram.com/adafruit Subscribe to Adafruit on YouTube: http://adafru.it/subscribe New tutorials on the Adafruit Learning System: http://learn.adafruit.com/ -----------------------------------------

wifi doge adafruit adafruit learning system arduino nano
Adafruit Industries
Testing Arduino Nano RP2040 Connect with CircuitPython I2C

Adafruit Industries

Play Episode Listen Later May 22, 2021 0:53


Liz submitted a PR to add support for the Nano RP2040 to CircuitPython and we thought to try it out! So far so good, the digital pins all toggle right and we were able to see the built in LSM6DSOX chip on the I2C port. We have a driver for this IMU so hey, why not wire up a quick demo? We have an external OLED wired up on the same I2C bus, reading acceleration/gyro data and displaying it just fine. Check out the PR here! https://github.com/adafruit/circuitpython/pull/4802 #arduino #adafruit #raspberrypi Visit the Adafruit shop online - http://www.adafruit.com ----------------------------------------- LIVE CHAT IS HERE! http://adafru.it/discord Adafruit on Instagram: https://www.instagram.com/adafruit Subscribe to Adafruit on YouTube: http://adafru.it/subscribe New tutorials on the Adafruit Learning System: http://learn.adafruit.com/ -----------------------------------------

pr testing oled imu adafruit i2c circuitpython adafruit learning system arduino nano
Electromaker Presents: Meet a Maker
Arduino Nano RP2040 Released, ROC-RK3566 SBC, SlimeVR, and More!

Electromaker Presents: Meet a Maker

Play Episode Listen Later May 19, 2021 29:40


Welcome to the Electromaker Show, episode 45! This week’s DIY tech news highlights include the release of the Arduino Nano RP2040, a ROC-RK3566 Firefly SBC debuted, SlimeVR Wi-Fi VR motion trackers seek crowdfunding, and more! Tune in for the latest maker, tech, DIY, IoT, embedded, and crowdfunding news stories from the week! We publish a new show every week. Subscribe here!  Don't have time to watch the show? Listen to the Electromaker Show in podcast format! Arduino Nano RP2040 is here Arduino received documentation update DIY pressure sensor uses Arduino and Processing SlimeVR Wi-Fi VR motion trackers on Crowd Supply Cody Block on IndieGoGo Kasi - Multisensory augmented reality learning tool in Kickstarter ROC-RK3566-PC from Firefly Scratch Week May 17-23 Scanlime's triple bristlebot drawing machine

Uncle Pinball's Podcast
Episode 65: Arduino Trident, PHOF, More!

Uncle Pinball's Podcast

Play Episode Listen Later Feb 3, 2021 16:07


OMG Trident is so fun. And it's even funner with an Arduino Nano running new code! Tim Arnold Haters can eat it.MORE!

trident arduino arduino nano
La Tecnología para todos
Arduino Nano y Fusion 360

La Tecnología para todos

Play Episode Listen Later Jun 30, 2020 60:22


Nuevo capítulo del podcast donde hablamos de la familia Arduino Nano y en la sección de 3D, Diego Trapero nos cuenta qué es Fusion 360 y qué nos aporta con respecto a los otros programas de edición 3D.Más información en https://programarfacil.com/blog/arduino-blog/familia-arduino-nano/

La Tecnología para todos
Termómetro de infrarrojos basado en Arduino Nano

La Tecnología para todos

Play Episode Listen Later Feb 4, 2020 27:52


En el capítulo 12 de la 5ª temporada hablo de los siguientes temas:Componente de la semana: sensor de temperatura y humedad HDC1080- Artículo → https://programarfacil.com/blog/arduino-blog/hdc1080-arduino-esp8266/- HDC1080 → https://amzn.to/2UkvLaQProyecto de la semana: Termómetro infrarrojo basado en Arduino.- Artículo → https://www.instructables.com/id/Arduino-Laser-Infrared-Thermometer/https://amzn.to/2U7PWJc- Sensor infrarrojo → https://amzn.to/31kgJn3- Pantalla OLED → https://amzn.to/2RVNR1s- Láser 5V → https://amzn.to/3b5ZiLf- Arduino Nano → https://amzn.to/2vMEkkzNoticia de la semana: nueva versión del IDE de Arduino 1.8.11- Artículo → https://blog.arduino.cc/2020/01/27/arduino-1-8-11-has-been-released/https://www.arduino.cc/en/main/donate

Kurz informiert – die IT-News des Tages von heise online
Bestmixer, Tesla, Fotografie, Arduino | Kurz informiert vom 23.05.2019

Kurz informiert – die IT-News des Tages von heise online

Play Episode Listen Later May 23, 2019


Hier werden Sie „kurz informiert“ mit Isabel Grünewald. Europol macht Mixingdienst Bestmixer.io dicht Europol sowie Behörden aus den Niederlanden und Luxemburg haben in einer gemeinsamen Aktion den Mixing-Dienst Bestmixer.io vom Netz genommen. Mixing-Dienste dienen zur Verschleierung von Zahlungsflüssen bei Kryptogeld. Bestmixer.io sei unter den drei größten Mixing-Services gewesen und habe binnen eines Jahres Kryptogeld im Wert von mindestens 200 Millionen US-Dollar durchgeleitet, umgerechnet 179 Millionen Euro. Laut der Europol stammte ein erheblicher Teil der durchgeflossenen Gelder aus krimineller Aktivität. Verbraucherschützer stellen Teslas Autopilot in Frage Elektroautohersteller Tesla kommt in einem Test der US-Verbraucherschutz-organisation Consumer Reports mit seiner Fahrassistenzsoftware "Autopilot" gar nicht gut weg. Demnach liege die Fahrtüchtigkeit des "Autopilot" weit hinter der menschlicher Fahrer zurück, meint Consumer Reports. Der Fahrer müsse oft eingreifen, um den "Autopilot" von falschen Entscheidungen abzuhalten. Tesla selbst weist stets darauf hin, dass die Software kein echtes Selbststeuerungssystem ist, sondern lediglich ein Fahrassistenzsystem. Foto aus 45 Kilometern Entfernung Forschern der chinesischen Universität für Wissenschaft und Technologie in Shanghai sind Aufnahmen von Stadtmotiven aus 45 Kilometern Entfernung gelungen. Die bisherige Aufnahmegrenze betrug zehn Kilometer, schreibt Technology Review. Durch eine Kombination von Einzelphotonendetektoren und einem Algorithmus für die rechnergestützte Bildgebung fügten die Forscher weitgestreute Datenpunkte zu hochaufgelösten Bildern zusammen. Die neue Technik erzeugte Bilder mit einer räumlichen Auflösung von etwa 60 Zentimetern, wodurch sogar Gebäudefenster erkennbar waren. Arduino überarbeitet seinen Nano Auch wenn der Arduino aus Italien kommt – zur Maker Faire in der kalifornischen Bay Area gibt es traditionsgemäß neue Boards. Künftig gibt es den kleinen Arduino Nano in gleich vier Varianten, drei davon können nun drahtlos kommunizieren. Neben generalüberholten Nanos gibt es in diesem Jahr außerdem eine Arduino SIM und Neues in der IoT Cloud, womit Arduino weiter auf das Internet der Dinge setzt. Diese und weitere aktuelle Nachrichten finden Sie ausführlich auf heise.de

Recalog
59. 2019/05/22 代替肉バーガー、他

Recalog

Play Episode Listen Later May 22, 2019


トピック 枕:代替肉バーガー(00:06~) 1. 元任天堂の2人が発明した“どこでも窓”「Atmoph Window」--日常をSFの世界に変える (06:25~) 2. さよなら「キログラム原器」 - 130年ぶりに定義が変わる「質量」 (16:20~) 3. Ryzenベース組み込みプロセッサの新製品、ゲーム機から4Kディスプレイまで対応 (25:19~) The AMD Ryzen™ Embedded V1000 4. 9つの『Pay』が使える「JPQR」8月開始。一気に広げる実証実験も4県で展開 (33:56~) d払い Origami Pay au PAY YOKA!Pay PayPay J-CoinPay メルペイ ゆうちょPay LINE Pay マネーフォワード、PayPayら決済事業者9社と統一QR「JPQR」普及事業に参画 5. ワンボードマイコンのArduinoボード、新Nanoファミリー4モデルを発表。9.9ドルから (48:47~) ARDUINO NANO EVERY ARDUINO NANO 33 IOT ARDUINO NANO 33 BLE ARDUINO NANO 33 BLE SENSE 6. 「月の裏側」で確認の鉱物、形成過程解明への一歩に 中国探査機 (54:50~) ご意見、ご感想 Twitter メールアドレス:recalog1@gmail.com 編曲 @Helta氏 最大限の感謝を BGM 騒音のない世界 beco様より OP:オオカミ少年 本編:蜃気楼 免責 本ラジオはあくまで個人の見解であり現実のいかなる団体を代表するものではありません ご理解頂ますようよろしくおねがいします

Welt aus Draht
WAD006 OUTPUT-Modul Teil 1

Welt aus Draht

Play Episode Listen Later Mar 26, 2019 26:30


Wieder einmal heisst es: Hallo, da draußen! Fast 3 Monate sind seit der letzten Folge vergangen. Dies lag hauptsächlich daran, dass wir die ALU nochmal ordentlich aufgebaut haben. Nachdem Alex den Frust über seine Online-Shopping-Einkäufe überwunden hat, können wir uns endlich einem neuen Modul im Podcast zuwenden: Dem OUTPUT-Modul. Mit der Hilfe von vier 7-Segment-Anzeigen wollen wir eine Anzeige für unseren 8-Bit-Computer bauen um auf die "kleinen LED-Module" in Zukunft verzichten zu können. Die Ansteuerung der 7-Segment-Anzeigen hat Ben sehr elegant gelöst, in dem er zwei JK-Flip-Flops mit einem 2-Line to 4-Line Decoder verbunden hat. Die JK-Flip-Flops sind so verschaltet, dass Sie vier unterschiedliche Zustände an den Decoder leiten, welcher diese auf vier Leitungen (für jeweils ein 7-Segment-Display) aufteilt. Damit die Folge aber nicht zu lang wird, heben wir uns diesen Schritt für das nächste Mal auf und haben stattdessen einen Arduino Nano dafür benutzt. Hier findet ihr den den Source Code. Dieser nutzt den Output der JK-Flip-Flops und bei jedem Zustandswechsel schickt er die nächste Ziffer an alle 7-Segment-Anzeigen. Da aber immer nur eine bestromt und sehr schnell gewechselt wird, sieht es für uns so aus, als ob die komplette Zahl, bestehend aus 3 unterschiedlichen Ziffern und einem Vorzeichen, gleichzeitig auf allen Displays zu sehen ist.

Essex Ham Amateur Radio Podcast
Repeater Timeout Kit Review (Video)

Essex Ham Amateur Radio Podcast

Play Episode Listen Later Jan 27, 2019 2:15


A first-look at a new amateur radio project kit for users of repeaters. The Repeater Timeout Project Kit has been released by HAMtronics.uk, and Essex Ham gets hands-on with constructing and testing the kit. We also speak to the creator of the kit, Andrew M0ONH. This low-cost kit uses an Arduino Nano and makes for a great construction project. More details here: https://www.essexham.co.uk/kits

CBA Podcast
Episode 9: Maker Faire project, PCB-manufacturers and Piotr's Arduino Holiday Gift

CBA Podcast

Play Episode Listen Later Dec 18, 2017 7:10


Another Remi/Han/solo episode this time, where I talk about a small success with iTunes podcast-registration, Maker Faire Dortmund / Ruhr (Germany) and my project for that, the great effort of mounting 4 power-resistors to a metal plate, cheap/fast PCB-manufacturing, and finally Piotr's Holiday Gift to me - an Arduino Nano and its bootloader.