Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
114 views

I use the Arduino Nano 33 iot in my project. I am measuring a value from a sensor, and I want to convert that value to an analog signal to drive an external analog device. (0 to 3 volts for example). ...
yooyle's user avatar
  • 85
0 votes
0 answers
30 views

I'm using a Arduino nano and am trying to upload a .hex file to the Arduino using the ArduinoUploader Package through a .net C# interface. And I run into the error: Unable to aqcuire sync in ...
LargeHotDogs13's user avatar
1 vote
1 answer
74 views

I am creating a project where my Arduino Nano IoT 33, needs connection to Internet (and it's crucial indeed), so I do use flutter_blue_plus to send all the data gathered in my app created in flutter, ...
Paco's user avatar
  • 13
0 votes
1 answer
161 views

I am using rust with #![no_std]. I want to use ufmt::uwriteln!(&mut serial, "Hello world\r").unwrap(); in function. I need to pass &mut serial to this function, but don't know how to ...
MadMike's user avatar
  • 1,439
0 votes
1 answer
973 views

I am creating a sound visualizer using an arduino nano,electret condenser microphone and 8X32 matrix and i keep getting the same error. here is the code: #include <ArduinoFFT.h> #include <...
Vyomesh Vasanth's user avatar
-1 votes
1 answer
89 views

I was tasked with a college project which involved programming an Arduino board to flash two LEDs , which would display a number in binary code. I am about halfway through, but when I attempt to ...
mculleton04's user avatar
0 votes
0 answers
172 views

I am using RF modules like RF transmitter and RF receiver for learning purpose to send message we need microcontroller to controls them so i use ESP8266MOD for RF transmitter and Arduino nano for RF ...
Krishnaraj's user avatar
1 vote
0 answers
89 views

I want to implement a function thats call "Walking-zero", this supposed to turn all 7 leds and just put one off, and must follow this pattern {1111111, 0111111, 1011111, 1101111, 1110111, ...
Alejandro's user avatar
0 votes
1 answer
215 views

I'm trying to run a TF Lite model on the Arduino Nano BLE 33 board. My data comes from two ultrasonic sensors -- Channel 1 and Channel 2. I am trying to determine where an object might be, so the ...
ofithch79's user avatar
  • 205
0 votes
1 answer
160 views

For some reason, my program doesn't make the LED clock work properly. I know that the problem is either in the breadboard or the program itself, since with the other program and different circuit ...
Pauline Sidiropoulou's user avatar
1 vote
0 answers
571 views

Hello everyone I've never posted before so I may not know how a couple of things work but I've made a fairly basic BLE sketch where a central connects consecutively with 2 peripherals, checks the rssi ...
konstantinos pilios's user avatar
-1 votes
1 answer
137 views

I've been following this tutorial to create an Arduino PID Temperature Controller. I can increase the set temperature by rotating the rotary encoder clockwise however I can't decrease the set ...
rgbyello's user avatar
0 votes
1 answer
4k views

I am trying to upload the Arduino code in Arduino Nano but I am getting the error avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync I tried several ...
Ashish's user avatar
  • 1
2 votes
1 answer
811 views

I am getting started with GPS modules, for my project I am using the NEO 6M GPS module with a Ceramic Antenna. So, earlier I tried to connect the GPS module with an Arduino Nano and was able to ...
atechofficials's user avatar
0 votes
1 answer
800 views

I'm working on a project that requires saving audio files from Arduino NANO 33 BLE, to create a dataset with EdgeImpulse, first of all, I can not use integrated webUSB to save audio directly on ...
Francesco Maccantelli's user avatar
1 vote
2 answers
475 views

I'm android developer and facing some autoConnect issue. I'm using Arduino nano IOT and developed some simple application to communicate. but I don't know why autoConnect doesn't work in this case. ...
ALAN's user avatar
  • 21
0 votes
0 answers
224 views

I'm trying to send data via UART from Due board to Nano board. At first I try to send data from Nano to Due and it works. But if I send the same data from Due to Nano it never receives it and my ...
Alaa Mousa 's user avatar
0 votes
1 answer
551 views

I'm pretty new with Arduino circuits and I'm trying to connect a DFPlayer Mini to Arduino Nano BLE 33 Sense. If I understood correctly the library "SoftwareSerial" doesn't work on the BLE ...
matteoopaoli's user avatar
0 votes
1 answer
401 views

I have a project and this project depends entirely on the communication between Arduino Due and Nano 33 BLE. I want to send data via UART from the sensor located in the Nano as float data, and I ...
Alaa Mousa 's user avatar
0 votes
1 answer
466 views

import 'package:control_pad/control_pad.dart'; import 'package:flutter_reactive_ble/flutter_reactive_ble.dart'; final flutterReactiveBle = FlutterReactiveBle(); late QualifiedCharacteristic c; ...
MikiS's user avatar
  • 11
-1 votes
1 answer
1k views

I want to create a circuit that plays mainly 2 audio, one when it gets power and another audio by pressing a button. I want to create it without SD card. Library used is PCM. Here is the code sample. #...
Arjun_B's user avatar
  • 61
0 votes
1 answer
966 views

I'm trying to connect my Arduino Nano RP2040 with MicroPython to my local WiFi network and make a HTTP request. The Nina W102 uBlox module on the board is an ESP32 and connects to the RP2040 via SPI (...
JensB's user avatar
  • 6,932
-1 votes
2 answers
675 views

I posted this question over on the Arduino forum first but my questions haven't been receiving much attention lately so here goes... I worked pretty hard to make a simple sketch proving how slow the ...
Landon's user avatar
  • 538
0 votes
1 answer
833 views

I have got both BLE working to configure and setup the nano IoT, and WIFI working to send sensor data to a cloud DB. I've found on Arduino Forum a possible solution it it https://forum.arduino.cc/t/...
Miguel Tomás's user avatar
0 votes
1 answer
825 views

I'm working on a project where an RFID-RC522 reader reads an RFID card, pulls that read number in, and relays in out via serial. The code for that is as follows: #include <SPI.h> #include <...
Jason Ellis's user avatar