this post was submitted on 10 Sep 2024
2 points (66.7% liked)

Arduino

331 readers
1 users here now

Arduino is an open-source electronic prototyping platform enabling users to create interactive electronic objects.

founded 1 year ago
MODERATORS
 

Question about Arduino's…

I'm working on a small project involving an Arduino-powered box. I'm curious if it's possible to integrate a Python-based virtual assistant into this project. The idea is to create a compact, Arduino-powered device that includes a virtual assistant capable of performing various tasks. Is this something that can be achieved?

@arduino

top 3 comments
sorted by: hot top controversial new old
[–] JackbyDev@programming.dev 3 points 6 days ago

I know the is an Arduino community but this sounds like a task for a Raspberry Pi.

[–] fubarx@lemmy.ml 3 points 1 week ago* (last edited 1 week ago)

Most Arduinos don't have enough horsepower to run a full assistant stack. They're designed as limited resource microcontrollers.

Basically, here are some choices, depending on what your priority is:

Depending on what you want to do, I'd suggest the easiest is #2, as a frontend to HomeAssistant, with the assistant running either on a beefy server or on the cloud.

Edit: "Arduino" actually can reference three different things:

  • the branded boards from arduino.cc
  • the software stack with C/C++ bindings running on top of a range of microcontrollers, or
  • the company called Arduino.

If you have a classic Arduino board, they usually have very limited power and run on a basic Atmel processor. An ESP-32 processor is a bit beefier and can run Arduino software (as well as FreeRTOS). And to make things even more confusing, Arduino the company sells an Arduino-branded board that runs the Arduino software stack, but on top of different processors, including an ESP-32: https://docs.arduino.cc/hardware/nano-esp32/

You may want to watch out which version of "Arduino" you want to work with.

[–] AsudoxDev@programming.dev 0 points 1 week ago

If Python can run in your arduino microcontroller, sure.