Skip to main content

Questions tagged [testing]

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

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 ...
Cowboy_Patrick's user avatar
1 vote
0 answers
355 views

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 ...
Chris Schmitz's user avatar
1 vote
1 answer
457 views

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 ...
Jarosław Jaryszew's user avatar
0 votes
1 answer
2k views

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/...
VOID seekers's user avatar
1 vote
1 answer
221 views

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,...
HarrisonO's user avatar
  • 125
1 vote
2 answers
376 views

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(...
Foad's user avatar
  • 143
2 votes
2 answers
3k views

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 ...
Jonah's user avatar
  • 123
-1 votes
1 answer
1k views

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 (...
Tabihul Mohammed's user avatar
1 vote
0 answers
81 views

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. ...
BooleanAssange's user avatar
2 votes
1 answer
727 views

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 ...
Freddy's user avatar
  • 121
22 votes
3 answers
196k views

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?
Hardik Thaker's user avatar
18 votes
3 answers
11k views

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 ...
Hardik Thaker's user avatar