Questions tagged [testing]
The testing tag has no summary.
23 questions
0
votes
1
answer
31
views
Simulate pin behaviour based on PulseView recording
I have a bunch of PulseView recordings from an existing device. Currently to verify if my Arduino handles the input properly I always use the real device. However it would be great if I could somehow ...
1
vote
0
answers
355
views
platformio native unit test Arduino.h not found
I'm writing code for a microcontroller project using PlatformIO.
I have a couple of classes that I want to write unit tests for. I've not unit tested with pio before so I'm starting with one of the ...
1
vote
1
answer
457
views
How to build and run AUnit tests
I found this example on how to create a project with AUnit tests: https://www.thecoderscorner.com/electronics/microcontrollers/embedded-testing/getting-started-unittesting-arduino/
According to it and ...
0
votes
1
answer
2k
views
Ardutester Millenium I2c Lcd Not Showing Anything!
Hiii Friends....,
I am Trying to Build Components tester Using Arduino Specifically Atmega328p Chip .
I Downloaded The Ardutester Millenium Code From Here .. https://create.arduino.cc/projecthub/...
1
vote
1
answer
221
views
Is there a test framework for Arduinos?
I'm working on big Arduino project that involves lots proprietary libraries. Ergo, we need test scripts to ensure each library works. Is there a testing framework for Arduino similar to CPPUnit, JUnit,...
1
vote
2
answers
376
views
Interrupt is activated as soon as I insert a jumper wire into the port
I have written a very simple code to test the interrupt functionality of my Arduino Uno expansion board:
const byte buttonPin3 = 3;
void setup() {
pinMode(buttonPin3, INPUT);
attachInterrupt(...
2
votes
2
answers
3k
views
SPI: test by connecting MOSI to MISO
Is it possible to test a SPI connection by wiring the MISO directly to the MOSI pin? I'm working on a low-level SPI implementation, and I want to check that the library is basically working. It ...
-1
votes
1
answer
1k
views
Arduino Uno Wifi Module ESP8266 AT Command Test error [closed]
When i Connected Rx>Rx (Rx Of module To Pin 0 Of Arduino) And Tx>Tx ( Tx Of Module To Pin 1 Of Arduino), The AT Command Test shows The Following error With Scrambled Words, but when I Connect Rx>Tx (...
1
vote
0
answers
81
views
How to test Arduino behaviour on Windows? [duplicate]
Hello fellow Arduino enthusiasts,
I created an Arduino project for a Mega2560 board in Microsoft Visual Studio.
Before loading the code on the board I want to test it on my Windows desktop computer.
...
2
votes
1
answer
727
views
How to make universal remote controller?
I am trying to make simple TV remote using Arduino.
I got this link from Google for making a remote.
Code uploaded perfectly on my device. But all it does is blink a the LED on pin 13.
I hope I ...
22
votes
3
answers
196k
views
How to check my Arduino board is working or dead?
When you have a board in your hand but you don't know is it working or not, how to verify if it's working or dead?
18
votes
3
answers
11k
views
What is the best way to unit test my code without controller? [duplicate]
I want to unit test my Arduino code. Ideally, I want to execute and test my code without uploading it to the board. What tools or libraries can help me with this?
There is an Arduino emulator in ...