Unanswered Questions
198 questions with no upvoted or accepted answers
4
votes
0
answers
718
views
ArduinoDue - Matlab: SerialUSB.write() sends ASCII?
I'm trying to get some binary data from an Arduino Due to Matlab.
Basically this is the setup:
Due:
byte usbMsg[33]= {0};
// filled with dummy as example
usbMsg[1] = '00000001';// in[3];
usbMsg[2] =...
3
votes
0
answers
204
views
Black screen when using higher SPI-speed for RA8857 LCD-controller
I'm using an Arduino Due that talks via SPI to an LCD (800x480) with the RA8875 controller chip.
The most recent datasheet I could find is: RA8875 datasheet.
Everything works as expected when using ...
3
votes
0
answers
713
views
Getting atsam3x8e (Arduino Due) to work
I decided to make a pcb based on the atsam3x8e (microcontroller used in Arduino Due). For the design I copied most of the layout that I found on this site and looked at the official Arduino Due ...
3
votes
1
answer
2k
views
Creating a sine wave with a DAC and feeding it back
I want to produce a digital sine wave, send it to DAC0, and then receive it back as input on A0 and plot the graph. I am using an Arduino Due. I wrote the following code:
#define maxSamplesNum 120
#...
3
votes
0
answers
498
views
SPI communication between two Ethernet Shields (W5100)
I am a newbie to the world of IoT, I want to ask...
Is it possible to connect two Ethernet shields with SPI? And if yes, how can I codes them?
I have reference from http://www.gammon.com.au/spi and ...
3
votes
0
answers
378
views
Connecting Arduino Due's DAC output to pc sound card with protection
I would like to connect the DAC outputs of my arduino board to my pc sound card input so that I can use my sounds card as an osciloscope.
I have two questions:
1- if I don't use an amplifier, how ...
3
votes
0
answers
640
views
ESP8266 and Arduino bidirectional streaming from and to a website
I was looking for some easy tutorial on bidirectional communication via ESP8266 connected to Arduino UNO. I want to send and receive strings from and to JQuery based website.
However, I couldn't find ...
3
votes
0
answers
129
views
Reading Reveive Hold Register from USART in SPI Mode on Arduino Due
Sending with this function here works fine:
uint16_t usart0spiTransfer16(uint16_t spiMessage16) {
uint16_t sdo = 0;
byte firstByte = spiMessage16;
byte secondByte = (spiMessage16 >> ...
3
votes
0
answers
323
views
Arduino Due upload firmware issue
I have Arduino Due on SAM3x8e. I'm on Ubuntu 14.04. Before today I uploaded firmware via terminal using those commands:
$ stty -F /dev/ttyACM0 speed 1200 cs8 -cstopb -parenb
$ /home/q/apps/devel/...
3
votes
0
answers
883
views
Arduino Due native programming port
Arduino does not recommend to program the Due board via Native port as it is not reliable:
If the MCU crashed for some reason it is likely that the soft erase procedure won't work as this procedure ...
3
votes
0
answers
1k
views
Interfacing WM8731 code to Arduino Due
WM8731 codec was successfully interfaced with Atmega328 like variants in Arduino. It was first done successfully by Open music labs who are the makers of the breakout board for WM8731. Taking this ...
3
votes
1
answer
785
views
ov2640 with 18 pin and no arducam shield
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 ...
2
votes
0
answers
577
views
Sending an image captured using ov7670 using arduino and serially transmit it to python
I am working on using an ov7670 camera module with arduino uno,capturing the image frame wise and transmitting the image serially line by line of each frame to python for image processing, however i ...
2
votes
0
answers
130
views
On initialising PWM with registers on my Due, why does unrelated duty cycle input influence my output?
I am finding that setting duty cycle on PWM channels 4 or 5 has an influence on whether channel 6 generates output. The following is a design of experiments view of my tests and results, where the ...
2
votes
0
answers
547
views
Why can't an Arduino/ATmega328 act as an SPI slave at anywhere approaching the maximum speed claimed in the datasheet?
The ATmega328 datasheet claims a maximum SPI slave speed of Fosc/4. For a chip clocked at 20MHz, that would be 5Mbps.
However, my tests show that even with no processing whatsoever in the interrupt (...