In the field of computer software, the term software build refers either to the process of converting source code files into standalone software artifact(s) that can be run on a computer, or the result of doing so.
Questions tagged [build]
31 questions
8
votes
3 answers
Are there any products based on Arduino that are sold by companies?
Ok, Arduino is a good technology but is it used professionally? Is the quality good enough to be used for professional purposes?
arezkibe
- 101
- 1
- 3
2
votes
3 answers
What kind of Arduino should I pick for a calculator?
I am planning to build a calculator using Arduino as the base. I already know C and I love low-level stuff, so I guess the software part won't be a problem.
However, I've been stuck with Arduino. What I need is something capable of doing math (as…
rev
- 121
- 3
2
votes
1 answer
Visibility of #define between sketch and library
I want to have a define from my sketch be picked up by a library.
Here is a similar question for references: Using #define and multiple classes
I have a CI server that compiles my arduino sketchs on commmit. It pulls all my personal libs from an…
Pimmetje
- 103
- 8
1
vote
1 answer
Environment Variable to change build
Is there a way to get the build to see an environment variable so that all the files can be built differently with one Environment variable change. Such as
#ifdef UseFirstDir
#include
#else
#include…
Gregg
- 165
- 1
- 7
0
votes
1 answer
Compiling includes with Ino
I'm attempting to compile this simple bounce.ino example with the ino tool, but it's giving me the error:
Bounce2.h: No such file or directory
I've placed it in the same directory as bounce.ino. Why can't it find the header?
Edit: I'm using Ubuntu.
Cerin
- 1,618
- 2
- 24
- 41