Questions tagged [ino]

Programs written using Arduino Software (IDE) are called sketches. These sketches are written in the text editor and are saved with the file extension .ino.

Programs written using Arduino Software (IDE) are called sketches. These sketches are written in the text editor and are saved with the file extension .ino.

9 questions
4
votes
1 answer

How to convert Arduino example sketch to a complete c++ project?

I'm experimenting something new with my Arduino Leonardo. I removed its original bootloader and flashed it with LUFA mass storage example with added functionalities(now its a firmware). I'm trying to now add RFID reader(read/write) example to my…
Isuru
  • 151
  • 1
  • 1
  • 8
3
votes
2 answers

Connecting via serial with Arduino comand line

Since inotool is dead, I'm trying to transition over to Arduino's built-in command line tool. It seems largely equivalent, but the one feature it seems to be missing is a serial interface. e.g. Running ino serial would open a simple serial interface…
Cerin
  • 1,688
  • 2
  • 28
  • 45
2
votes
5 answers

How to use variables and functions across multiple .ino files

I have 2 .ino files (2 tabs) for one Arduino project/sketch: MySketch_File1.ino and MySketch_File2.ino. I declared in MySketch_File2 variables and functions which I want to use in MySketch_File1, but I get this error massage: error: 'a' was not…
William Roy
  • 515
  • 4
  • 10
  • 22
2
votes
1 answer

avrdude.conf: programmer type must be written as "id_type"?

I'm trying to compile & run using ino. At the ino upload step I get the following error: avrdude: error at /usr/share/arduino/hardware/tools/avrdude.conf:332: programmer type must be written as "id_type" Relevant section of…
tomwhipple
  • 171
  • 1
  • 5
1
vote
2 answers

What does the .ino file extension mean

What does the .ino file extension mean? We have .cpp meaning C++, .py meaning Python, .exe meaning executable and so-on.They're obvious. The .pde file type that sketches previously used, I think, comes from processing development environment (the…
starfry
  • 131
  • 1
  • 5
1
vote
1 answer

Why is my boards.txt file not being found?

I'm using the ino command line tool for the first time. When attempting to build my first sketch I run: ino build in the project directory. I get the following error: Searching for Board description file (boards.txt) ... FAILED Board description…
kingsfoil
  • 131
  • 7
1
vote
1 answer

How to exclude a ino/pde file from Arduino projects

I would like to be able to exclude from the auto-including process of the current project (without renaming the extension or delete it) a sketch with pde or ino extension that is used in certain circumstances only. How can I do this? I currently use…
xxx
  • 15
  • 1
  • 4
1
vote
2 answers

Arduino declaring class in h and cpp file Undefined Reference

I am trying to compile my project, but unfortunately get errors. I created class and separated implementation and declaration (cpp file and h file) Here they are sensor.h #ifndef SENSOR_H #define SENSOR_H #include #include…
solderingiron
  • 85
  • 1
  • 2
  • 6
0
votes
2 answers

Visual Micro without .ino files

I am using the visual micro extension for Visual Studio 2015. I would like to not use any .ino files since I'm trying to setup cppcheck which doesn't recogonize .cpp files, and its just what I'm used to. However when I change my project.ino file…
Bob
  • 185
  • 7