Skip to content

Commit 5399ec8

Browse files
committed
update readme
1 parent 11dc4c9 commit 5399ec8

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.DS_Store

2 KB
Binary file not shown.

DESCRIPTION

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ Version: 0.1
55
Authors@R: c(
66
person('Hao', 'Zhu', email = '[email protected]', role = c('aut', 'cre'),
77
comment = c(ORCID = '0000-0002-3386-6076')),
8-
person('Tod', 'Kurt', role = 'aut')
8+
person('Thomas', 'Travison', role = 'aut'),
9+
person('Wanting', 'Yu', role = 'ctb'),
10+
person('Brad', 'Manor', role = 'aut'),
11+
person('Tod', 'Kurt', role = 'aut'),
912
)
1013
Description: Simple C based library for easily reading serial ports. It works
1114
on any POSIX-compatible system, including Mac OS and Linux.

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,7 @@ Arduino IDE but give you more power to control:
7171
![](docs/ar_plotter.png)
7272

7373
> However, note that due to a limitation in plotly (? not confirmed yet), this plotter can't visualize signals sampling at a 25Hz or higher (on my computer) and it will freeze your R session if you do that. Therefore for now I added a `reduce_freq` option to `ar_plotter` with default ON. It will add a 40ms (0.04s) delay for every reading. If you are looking for a more precised way to **collect** data, you can either choose to turn this option off or use `ar_collect`, which is much simpler and can work in any condition.
74+
75+
# Credits
76+
Part of this work goes to the a study project running at [Marcus Institute for Aging Research](https://www.marcusinstituteforaging.org/). It won't happen without the support from [Brad Manor](https://www.marcusinstituteforaging.org/scientists/team-profiles-and-bios/brad-manor-phd) and his grant funding (1-K01-AG044543–01A1). This project was also supported by the leadership from [Tom Travison](https://www.marcusinstituteforaging.org/scientists/team-profiles-and-bios/thomas-travison-phd) and the funding support from the Boston Claude D. Pepper Older Americans Independence Center (P30-AG013679).
77+

docs/example.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
library(arduinor)
2-
con <- ar_init("/dev/cu.SLAB_USBtoUART", baud = 57600)
2+
con <- ar_init("/dev/cu.SLAB_USBtoUART", baud = 9600)
33

44
ar_flush_hard(con)
55
ar_read(con)

0 commit comments

Comments
 (0)