Skip to main content

Questions tagged [arduino-due]

Arduino DUE is an microcontroller card based on the Atmel SAM3X8E ARM Cortex-M3 CPU. This is a 32bit ARM core MCU.

Filter by
Sorted by
Tagged with
0 votes
1 answer
98 views

I developed a quick custom PCB using the ATSAM3X8EA-AU as I wanted to use Arduino to program it as an Arduino DUE, I kept most of the schematic the same, however I used pin A14 pin 52 as an analog ...
Newbie Noob's user avatar
1 vote
1 answer
1k views

I was trying to learn how to use UDP protocol to use in my automation project to send commands to an Arduino Due on ethernet with an ENC28J60 breakout board which I have connected to the Due from SPI ...
Jupiterian's user avatar
0 votes
1 answer
12k views

In my application Arduino Due is configured as master and instead of the actual slave device I am making use of Arduino Uno as Slave.I will share the Master code which I have worked out. Can Anyone ...
vamshi krishna's user avatar
2 votes
1 answer
379 views

I have 4 Arduino boards pushing data over UART to 4 serial ports on the Arduino Due at 115200 baud rate. Data format - <Short URL>,<Number of the Node> Eg: px.ht/d/mCxG,1" Arduino Due ...
Hako's user avatar
  • 23
2 votes
3 answers
34k views

I am trying to connect a Bluetooth module and a gas sensor to Arduino. Bluetooth module: HM-10 Gas sensor: MQ-2 I read the guides for the HM-10 and MQ-2 and they both need to use the Arduino's 5v pin. ...
emsloth's user avatar
  • 49
4 votes
4 answers
12k views

I am trying to display the values i get from reading a potentiometer (0-1023) in the program called 'processing'. when I just use Serial.write(integer) and display the value on a line graph in '...
Tom's user avatar
  • 59
0 votes
1 answer
758 views

I am working on a project using Force Sensors to build a keyboard for MD patients. I have connected the sensors (each with 4 input pins) to digital pins to Arduino Due. I want to adjust the threshold ...
baraah baryhe's user avatar
1 vote
2 answers
516 views

It's been harder than I expected to find a reference source or usage guide. There's a number of sources I've looked at along the road to this question: The Due is listed here and here as having 512KB ...
RowanP's user avatar
  • 869
2 votes
2 answers
1k views

I have this project of a "phone". It consists of: Arduino DUE, 4x4 Keypad, SD Data shield, a phone receiver detect (on/off) an Amp and a Speaker. In the beginning, after the phone receiver ...
GoldenMoose's user avatar
-1 votes
1 answer
143 views

Good Morning to everyone, I am a PhD Student in experimental fluid mechanics at the University of Naples "Federico II", Italy. I am working on Arduino Due card and i am novel in applications ...
AlessandroScala's user avatar
-1 votes
1 answer
374 views

I am looking for a very low frequency application like below 300Hz. What is the minimum sampling rate in Arduino due? I am very new to this. I see in the datasheet that max sampling rate is 20MHz.
Nimasha Pilippange's user avatar
1 vote
2 answers
555 views

I new in Arduino environment. Found some code generate sine wave but frequency between 14kHz to 84kHz. URL is https://www.instructables.com/SineWave-Generator-for-Arduino-DUE/ I need to generate sine ...
Wan Aideed's user avatar
0 votes
1 answer
5k views

I am using an Arduino Due for vehicle tracking with a GPS/GPRS device. Before using Arduino Due I used an Arduino Uno. When I tryi to load my code in the Arduino Due, it shows me "fatal error: ...
Iqbal Hossain's user avatar
11 votes
4 answers
21k views

How do the IO registers of Arduino Due work? On Arduino Uno just set DDRx, then PINx to read, PORTx to write, I'd like to do the same thing with an Arduino Due, but it has many more registers, such as ...
Alex's user avatar
  • 315
3 votes
2 answers
680 views

I'm working on a project that uses quite a bit of RAM to store and analyze data that is sent from the PC. The program heavily relies on malloc/free, which normally works just fine. However, if the ...
PMF's user avatar
  • 1,306
3 votes
1 answer
2k views

While the question here gives some hints, the solution provided there does not directly work on the Due, since it uses a different compiler and toolkit. Also, the Due has more than enough flash for ...
PMF's user avatar
  • 1,306
3 votes
1 answer
840 views

I bought this ov2640 camera module with 18 pins and I don't have shield to insert it to. I am looking for a library or working code on this my camera sensor but all I kept getting was arducam examples ...
Paul Nnamdi's user avatar
1 vote
0 answers
174 views

How do I trigger automatic conversion on the ADC on the DUE? If this was the uno, I could just do sbi(ADCSRA,ADATE); sbi(ADCSRA,ADSC); but for the due, I seem to have to use adc_configure_trigger(ADC,...
user1402154's user avatar
1 vote
1 answer
227 views

I'm confused with register wrting method by compound assignment and/or pointer because I don't know where are some of the values come from. Example 1 REG_PMC_PCER1 |= PMC_PCER1_PID36; // Enable PWM - ...
7E10FC9A's user avatar
  • 209
2 votes
1 answer
1k views

I have an Arduino Due that was programmed by the Arduino IDE, to cut things short I lost access to the original sketch (.ino) file, there is no way of recovering it no matter what. I know that in the ...
Abdalrahman Seliem's user avatar
0 votes
1 answer
229 views

How do I setup a Due to count rising edges on a pin automatically without having to waste time on an ISR? I have some wheel encoders, the simplist implementation is direction less where you only count ...
FourierFlux's user avatar
1 vote
1 answer
300 views

(This question is specific for the Arduino Due, but maybe there's a general answer to the question) I'm using DueFlashStorage to store application data in the flash memory of my Arduino Due. That ...
PMF's user avatar
  • 1,306
1 vote
1 answer
248 views

The following code, debugs SerialUSB Native Port, plugged to a PC, and connected through a Terminal Monitor (such as Termite, with any bps, 8N1, RTS/CTS). At start, the ports seeks for communication, ...
Brethlosze's user avatar
0 votes
1 answer
190 views

The second and third while and if are not working but the first while and if do work. Am I doing something wrong? #include <DFMiniMp3.h> int sw1 = 3; int sw2 = 4; int sw3 = 5; class Mp3Notify ...
Habib Anwari's user avatar
1 vote
1 answer
322 views

I have been trying to develop a connection from the arduino IDE to Processing so I can send data measured on the arduino Pins to processing to display. I first packaged the 10-bit integers I was ...
Tom's user avatar
  • 59

1
2 3 4 5
10