The testing tag has no usage guidance.
0
votes
1answer
19 views
SD test is taking long answer when it fails
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 ...
1
vote
0answers
30 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.
...
0
votes
4answers
193 views
Testing Arduino with Visual Studio Community 2013 raise LNK error
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 ...
1
vote
1answer
238 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 remote.
Code uploaded perfectly on my device. But all it does is blink a "13" led light.
I hope i have got ...
4
votes
1answer
1k views
Check contents of buffer after serial read
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.
...
11
votes
3answers
44k 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?
106
votes
11answers
168k views
Can I program for Arduino without having a real board?
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 ...
12
votes
3answers
4k 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 ...