Sidebar

Arduino

arduino
Arduino AmandaTech 1 week ago 66%
Question about Arduino's…

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](https://programming.dev/c/arduino)

2
3
arduino
Arduino slyuser 2 months ago 100%
char array arduino
2
0
arduino
Arduino formamac 2 months ago 100%
Planning semaine 28 (2024) 🗓️

Planning semaine 28 (2024) 🗓️ \- mardi 09 juillet, \- mercredi 10 juillet, \- jeudi 11 juillet, \- samedi 13 juillet. ➡️ [https://twitch.tv/formamac](https://twitch.tv/formamac) 🍎 Programme estivale activé ☀️ [\#streaming](https://mastodon.social/tags/streaming) [#stream](https://mastodon.social/tags/stream) [#twitch](https://mastodon.social/tags/twitch) [#DIY](https://mastodon.social/tags/DIY) [#RPG](https://mastodon.social/tags/RPG) [#gamedev](https://mastodon.social/tags/gamedev) [@arduino](https://mastodon.social/@arduino) [@arduino@programming.dev](https://programming.dev/c/arduino) [@arduino@a.gup.pe](https://a.gup.pe/u/arduino) [@minecraft@lemmy.world](https://lemmy.world/c/minecraft) [@minecraft@lemmy.ml](https://lemmy.ml/c/minecraft) [@MinecraftWikiEN](https://wikis.world/@MinecraftWikiEN)

1
0
arduino
Arduino callcc 3 months ago 100%
Lil plotting library

I'm writing a little plotting library for LCDs. I'll try to publish it once it's more polished. What do you think? For now it supports reading data from a Vector, arbitrary scaling on both axes, linear interpolation, different point styles (square, circle), arbitrary many graphs. ![](https://lemmy.world/pictrs/image/77b9c635-5b84-41e1-b3b3-258cfcc8c2b9.gif)

68
6
arduino
Arduino mac 7 months ago 100%
IDE 2.3 is out blog.arduino.cc
1
0
arduino
Arduino half_built_pyramids 8 months ago 100%
Simultaneous joystick 3-axis protocol

cross-posted from: https://lemmy.world/post/10852890 > cross-posted from: https://lemmy.world/post/10852531 > > > Working on a joystick. Seems like any protocol I use to read from peripherals is going to be bottlenecked by having just one input. My microcontroller might have multiple ADCs, but there's just one processor stepping through them. Same for spi, or i2c, or uart. There's really only ever one sensor reporting back its data at a time. > > > > I know this might not matter for measurement resolution. Especially if you're polling at like 115k serial or something, but... > > > > That's 8 bits per axis, and three axis. Now that's at least 34 bits. To sample each axis we're down to only 4.5k samples per second. Plus whatever other cycles the controller has to handle... even if I spent half that time doing microcontrolle cycles at like 2k we're probably still well with the best star craft apms or whatever. I'd still like to find some way to really over engineer this thing. > > > > I read a little about tdm, but that's out of my league and I don't know if you could even have 3 simultaneously signals that way > > > > I'm thinking a microcontroller for each axis, and a usb port for each of them. So it appears like 3 different controllers to the computer. The user would just have to map the axis from the 3 controllers into 1 in their game software. I assume the steam remapping could do this. > > > > Is it just going to get smashed back into one thread in the computer's usb hub anyway? > > > > Any other suggestions?

1
0
arduino
Arduino Underpay 10 months ago 100%
Need help making a timer

Hello! For a project I need to make a four-digit timer that counts up. I think I can figure out the counting part myself, it is just the display part I need help with. We are using four separate seven segment displays and an Arduino Mega 2560. The code currently looks like this: (I had it written over multiple lines, but the Lemmy preview just makes one big block of text from it so sorry for that) `void Display1() // Display a 1 { digitalWrite(1, LOW); digitalWrite(2, LOW); digitalWrite(4, HIGH); digitalWrite(6, HIGH); digitalWrite(7, LOW); digitalWrite(9, LOW); digitalWrite(10, LOW); } ` This function is for writing a one, but I have written one for all ten numbers already. The problem is that this only works for the first display. Does anyone know how I can edit this code to make four seven segment displays work together, and make it display full numbers like 8732 for example? Thank you!

1
0
arduino
Arduino ericjmorey 10 months ago 100%
Arduino for Everybody - freeCodeCamp.org YouTube Video Course www.freecodecamp.org

cross-posted from: https://programming.dev/post/5924204 > This looks like a good entry point for people that want to get into embedded software with a course on Arduino hardware fundamentals. > > It's a 10 hour course that includes 14 hands on projects. > > [Arduino for Everybody - Course Summary](https://www.freecodecamp.org/news/arduino-for-everybody/) > > [Arduino for Everybody - Direct link to video](https://www.youtube.com/watch?v=DPqiIzK97K0)

2
0
arduino
Arduino HamBrick 1 year ago 100%
Help finding some hackaday article

I read a hackaday(?) article a couple weeks ago about someone who got an open source esp32 prebuilt radio sniffer(?) and added a short range transceiver to turn it into a functional Walkie-Talkie-esque device. Does anyone have the link to the article? I thought I saved it somewhere but I can’t find it there or in my search history

1
0
arduino
Arduino Mustafaalbazy 1 year ago 100%
Arduino Cookbook 3rd ed www.oreilly.com

I’ve been following this book while practicing on Arduino during the last 2 months, and I found it extremely helpful. Tbh much of the content is already on the official documentation, but it’s more precise and directed in the book. While the content itself is spot on, some of the code examples does not work/compile on the current Arduino ide.

1
0