-
Notifications
You must be signed in to change notification settings - Fork 493
Conversation
First step towards #30 |
@@ -24,18 +24,97 @@ | |||
#define FIREBASE_JSONBUFFER_SIZE 200 | |||
#endif // FIREBASE_JSONBUFFER_SIZE | |||
|
|||
/** | |||
* Gateway class for Arduino clients to interact with the Firebase backend. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we should also precise there is the default Firebase
instance and give an example.
s/Gateway/Main/
s/the Firebase backend/Firebase/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
LGTM, just nits. |
class FirebaseArduino { | ||
public: | ||
/** | ||
* Must be called first. This sets the class up for use. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/This sets the class up for use/This initialize the client with the given firebase host and credentials.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Follows the style layed out here: http://www.stack.nl/~dimitri/doxygen/manual/docblocks.html
There are several options. I chose the javadoc style but am not particularly attached to it.