Skip to main content

Questions tagged [testing]

Filter by
Sorted by
Tagged with
0 votes
1 answer
32 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
2 votes
2 answers
440 views

I have an Arduino project where the file structure looks like this myProject/ myProject.ino ImportantClass1.hpp ImportantClass1.cpp ImportantClass2.hpp ImportantClass2.cpp ...
Hubert B'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
4 votes
5 answers
134 views

I am using Arduino for an IoT class (40 students). I have set up a test program to check all sensors and actuators used in the class (we need to recycle for next semester). However, I would also like ...
Lasse Berntzen'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
0 answers
61 views

I have coded a fix for a major problem with the Arduino map function (in Arduino.h & arduino/avr/cores/arduino/WMath.cpp). I submitted it as a comment to map function causes huge errors when ...
brewmanz's user avatar
  • 155
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
4 votes
3 answers
3k views

I have an arduino program that only does serial communications with a little bit of math, and I am writing another one to communicate with it on a second arduino. For testing purposes I was hoping I ...
bob mcgrath's user avatar
1 vote
1 answer
222 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
1 answer
174 views

6 years ago, there has been a question "How to emulate Arduino on PC". Since then, probably many more Arduino emulators have been introduces. With this question, I would like to narrow the search ...
J. Doe's user avatar
  • 127
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
1 vote
2 answers
654 views

I'm trying to do some simple unit testing with arduino-cli in a .gitlab-ci file like so variables: DOCKER_HOST: tcp://docker:2375 image: "docker:latest" services: - docker:dind before_script: ...
mikeLundquist's user avatar
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 vote
2 answers
2k views

I d'like to test if the PWM mode is working correctly on the pins of my Arduino Board. Do you know a simple schema to do this ?
snoob dogg's user avatar
-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
0 votes
2 answers
433 views

I am working on an Arduino application that logs sensors values into SD files. It is essential that the SD is inserted and working when a test is started, thus I need to check the presence of the SD ...
Etienne P.'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
0 votes
4 answers
513 views

I have two projects in my Visual Studio Community 2013 solution. I created a project for Arduino, and create another project for Test. When I run the project tests without adding the Arduino project ...
Robert's user avatar
  • 159
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
4 votes
1 answer
3k views

I would like to test the contents of data received over a serial connection. In my loop() I store the data in bffr; and afterwards I would like to test to see if there are some predefined words in it. ...
stUrb's user avatar
  • 351
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
245 votes
13 answers
475k views

I would like to start the development of some basic Arduino projects but I don't own an Arduino board yet. Is there a way I can write my code and emulate/test it using a desktop computer so after my ...
totymedli's user avatar
  • 2,929
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