getting error 'Serial' was not declared in this scope
up vote
1
down vote
favorite
I am adding Dust Sensor to my particle photon project at home,
I got this GitHub project that I want to test before implementing a final code.
I am not an expert in cpp, I wanted to modularise the dust sensor codebase to separate library so I created new dustSensor.cpp file and kept the code linked above.
but I keep getting error:
'Serial' was not declared in this scope
'Serial1' was not declared in this scope
'DEBUG' was not declared in this scope
'DEC' was not declared in this scope dustSensor.cpp:13:57:
I do have Serial.begin(57600) called in setup() function but still get the above error
serial programming softwareserial serial-data cpp
add a comment |
up vote
1
down vote
favorite
I am adding Dust Sensor to my particle photon project at home,
I got this GitHub project that I want to test before implementing a final code.
I am not an expert in cpp, I wanted to modularise the dust sensor codebase to separate library so I created new dustSensor.cpp file and kept the code linked above.
but I keep getting error:
'Serial' was not declared in this scope
'Serial1' was not declared in this scope
'DEBUG' was not declared in this scope
'DEC' was not declared in this scope dustSensor.cpp:13:57:
I do have Serial.begin(57600) called in setup() function but still get the above error
serial programming softwareserial serial-data cpp
1
add#include <Arduno.h>
to cpp
– Juraj
Nov 15 at 13:48
you can find it with opened your Particle Project in the Desktop IDE and click on theBrowse and Manage Libraries
buttons and find the library you need. that's automatically include your libraries. see this docs.
– abu-ahmed al-khatiri
Nov 15 at 14:02
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am adding Dust Sensor to my particle photon project at home,
I got this GitHub project that I want to test before implementing a final code.
I am not an expert in cpp, I wanted to modularise the dust sensor codebase to separate library so I created new dustSensor.cpp file and kept the code linked above.
but I keep getting error:
'Serial' was not declared in this scope
'Serial1' was not declared in this scope
'DEBUG' was not declared in this scope
'DEC' was not declared in this scope dustSensor.cpp:13:57:
I do have Serial.begin(57600) called in setup() function but still get the above error
serial programming softwareserial serial-data cpp
I am adding Dust Sensor to my particle photon project at home,
I got this GitHub project that I want to test before implementing a final code.
I am not an expert in cpp, I wanted to modularise the dust sensor codebase to separate library so I created new dustSensor.cpp file and kept the code linked above.
but I keep getting error:
'Serial' was not declared in this scope
'Serial1' was not declared in this scope
'DEBUG' was not declared in this scope
'DEC' was not declared in this scope dustSensor.cpp:13:57:
I do have Serial.begin(57600) called in setup() function but still get the above error
serial programming softwareserial serial-data cpp
serial programming softwareserial serial-data cpp
asked Nov 15 at 13:22
Ciasto piekarz
2741421
2741421
1
add#include <Arduno.h>
to cpp
– Juraj
Nov 15 at 13:48
you can find it with opened your Particle Project in the Desktop IDE and click on theBrowse and Manage Libraries
buttons and find the library you need. that's automatically include your libraries. see this docs.
– abu-ahmed al-khatiri
Nov 15 at 14:02
add a comment |
1
add#include <Arduno.h>
to cpp
– Juraj
Nov 15 at 13:48
you can find it with opened your Particle Project in the Desktop IDE and click on theBrowse and Manage Libraries
buttons and find the library you need. that's automatically include your libraries. see this docs.
– abu-ahmed al-khatiri
Nov 15 at 14:02
1
1
add
#include <Arduno.h>
to cpp– Juraj
Nov 15 at 13:48
add
#include <Arduno.h>
to cpp– Juraj
Nov 15 at 13:48
you can find it with opened your Particle Project in the Desktop IDE and click on the
Browse and Manage Libraries
buttons and find the library you need. that's automatically include your libraries. see this docs.– abu-ahmed al-khatiri
Nov 15 at 14:02
you can find it with opened your Particle Project in the Desktop IDE and click on the
Browse and Manage Libraries
buttons and find the library you need. that's automatically include your libraries. see this docs.– abu-ahmed al-khatiri
Nov 15 at 14:02
add a comment |
1 Answer
1
active
oldest
votes
up vote
4
down vote
I learned that I needed to include Arduino.h
header file
apart from that I learned .ino files and .cpp files is that the .ino files transparently include particle.h for you.
The other difference is that .ino files generate forward declarations for you. This is necessary when you’ve implemented a function later in the file than when you’ve first used it. For example, if you pass the function to something like Particle.subscribe in setup() but you’ve implemented it farther down the file.
2
The technical name for that is a "forward reference". Historical note: the necessity to declare the function before a forward reference originated because early C compilers were written to read your source code only once, rather than once to find function and variable definitions and again to generate code once the components of it were known. Such a compiler was easier to write and ran faster (which was a bigger concern at the time than it is today).
– JRobert
Nov 15 at 15:44
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
I learned that I needed to include Arduino.h
header file
apart from that I learned .ino files and .cpp files is that the .ino files transparently include particle.h for you.
The other difference is that .ino files generate forward declarations for you. This is necessary when you’ve implemented a function later in the file than when you’ve first used it. For example, if you pass the function to something like Particle.subscribe in setup() but you’ve implemented it farther down the file.
2
The technical name for that is a "forward reference". Historical note: the necessity to declare the function before a forward reference originated because early C compilers were written to read your source code only once, rather than once to find function and variable definitions and again to generate code once the components of it were known. Such a compiler was easier to write and ran faster (which was a bigger concern at the time than it is today).
– JRobert
Nov 15 at 15:44
add a comment |
up vote
4
down vote
I learned that I needed to include Arduino.h
header file
apart from that I learned .ino files and .cpp files is that the .ino files transparently include particle.h for you.
The other difference is that .ino files generate forward declarations for you. This is necessary when you’ve implemented a function later in the file than when you’ve first used it. For example, if you pass the function to something like Particle.subscribe in setup() but you’ve implemented it farther down the file.
2
The technical name for that is a "forward reference". Historical note: the necessity to declare the function before a forward reference originated because early C compilers were written to read your source code only once, rather than once to find function and variable definitions and again to generate code once the components of it were known. Such a compiler was easier to write and ran faster (which was a bigger concern at the time than it is today).
– JRobert
Nov 15 at 15:44
add a comment |
up vote
4
down vote
up vote
4
down vote
I learned that I needed to include Arduino.h
header file
apart from that I learned .ino files and .cpp files is that the .ino files transparently include particle.h for you.
The other difference is that .ino files generate forward declarations for you. This is necessary when you’ve implemented a function later in the file than when you’ve first used it. For example, if you pass the function to something like Particle.subscribe in setup() but you’ve implemented it farther down the file.
I learned that I needed to include Arduino.h
header file
apart from that I learned .ino files and .cpp files is that the .ino files transparently include particle.h for you.
The other difference is that .ino files generate forward declarations for you. This is necessary when you’ve implemented a function later in the file than when you’ve first used it. For example, if you pass the function to something like Particle.subscribe in setup() but you’ve implemented it farther down the file.
answered Nov 15 at 14:43
Ciasto piekarz
2741421
2741421
2
The technical name for that is a "forward reference". Historical note: the necessity to declare the function before a forward reference originated because early C compilers were written to read your source code only once, rather than once to find function and variable definitions and again to generate code once the components of it were known. Such a compiler was easier to write and ran faster (which was a bigger concern at the time than it is today).
– JRobert
Nov 15 at 15:44
add a comment |
2
The technical name for that is a "forward reference". Historical note: the necessity to declare the function before a forward reference originated because early C compilers were written to read your source code only once, rather than once to find function and variable definitions and again to generate code once the components of it were known. Such a compiler was easier to write and ran faster (which was a bigger concern at the time than it is today).
– JRobert
Nov 15 at 15:44
2
2
The technical name for that is a "forward reference". Historical note: the necessity to declare the function before a forward reference originated because early C compilers were written to read your source code only once, rather than once to find function and variable definitions and again to generate code once the components of it were known. Such a compiler was easier to write and ran faster (which was a bigger concern at the time than it is today).
– JRobert
Nov 15 at 15:44
The technical name for that is a "forward reference". Historical note: the necessity to declare the function before a forward reference originated because early C compilers were written to read your source code only once, rather than once to find function and variable definitions and again to generate code once the components of it were known. Such a compiler was easier to write and ran faster (which was a bigger concern at the time than it is today).
– JRobert
Nov 15 at 15:44
add a comment |
Thanks for contributing an answer to Arduino Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2farduino.stackexchange.com%2fquestions%2f57875%2fgetting-error-serial-was-not-declared-in-this-scope%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
add
#include <Arduno.h>
to cpp– Juraj
Nov 15 at 13:48
you can find it with opened your Particle Project in the Desktop IDE and click on the
Browse and Manage Libraries
buttons and find the library you need. that's automatically include your libraries. see this docs.– abu-ahmed al-khatiri
Nov 15 at 14:02