2023-11-03 14:03:43 +00:00
|
|
|
# Contacts
|
|
|
|
|
2024-12-23 21:49:26 +00:00
|
|
|
View, edit and call contacts on your bangle.js. Calling is done via the bluetooth connection to your android phone.
|
2023-11-03 14:03:43 +00:00
|
|
|
|
|
|
|
## Contacts JSON file
|
|
|
|
|
|
|
|
When the app is loaded from the app loader, a file named
|
|
|
|
`contacts.json` is loaded along with the javascript etc. The file
|
|
|
|
has the following contents:
|
|
|
|
|
|
|
|
```
|
|
|
|
[
|
|
|
|
{
|
2024-12-23 21:49:26 +00:00
|
|
|
"name":"First Last",
|
|
|
|
"number":"123456789",
|
2023-11-03 14:03:43 +00:00
|
|
|
},
|
|
|
|
{
|
2024-12-23 21:49:26 +00:00
|
|
|
"name": "James Bond",
|
|
|
|
"number":"555-007",
|
|
|
|
},
|
|
|
|
...
|
2023-11-03 14:03:43 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
## Contacts Editor
|
|
|
|
|
|
|
|
Clicking on the download icon of `Contents` in the app loader invokes
|
|
|
|
the contact editor. The editor downloads and displays the current
|
|
|
|
`contacts.json` file. Clicking the `Edit` button beside an entry
|
|
|
|
causes the entry to be deleted from the list and displayed in the edit
|
2024-12-23 21:49:26 +00:00
|
|
|
boxes. It can be restored - by clicking the `Add` button.
|
|
|
|
|
|
|
|
# Icons
|
|
|
|
|
|
|
|
<a target="_blank" href="https://icons8.com/icon/85059/phone">Phone</a> icon by <a target="_blank" href="https://icons8.com">Icons8</a>
|
|
|
|
|
|
|
|
<a target="_blank" href="https://icons8.com/icon/362/trash-can">Delete Button</a> icon by <a target="_blank" href="https://icons8.com">Icons8</a>
|
|
|
|
|
|
|
|
<a target="_blank" href="https://icons8.com/icon/iwE4yCawoyKM/call-list">Call List</a> icon by <a target="_blank" href="https://icons8.com">Icons8</a>
|