Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,21 @@ This module also allows you to make "selfie" photo snapshots with the camera and

To use `camera` module, add it to the modules array in the `config/config.js` file with the following settings:
````javascript

modules: [
{
module: 'camera',
position: 'top_center',
config: selfieInterval: 3, // Time interval in seconds before the photo will be taken.
emailConfig: {
service: 'Hotmail', // Email provider to use to send email with a photo.
auth: {
user: '<name@email.com>', // Your email account
pass: '<password>' // Your password for email account
}
}
]
config: {
selfieInterval: 3, // Time interval in seconds before the photo will be taken.
emailConfig: {
service: 'Hotmail', // Email provider to use to send email with a photo.
auth: {
user: '<name@email.com>', // Your email account
pass: '<password>' // Your password for email account
}
}
}

}

````

Expand Down