Skip to content

Commit a053721

Browse files
committed
added paper draft for joss
1 parent 5399ec8 commit a053721

File tree

5 files changed

+521
-1
lines changed

5 files changed

+521
-1
lines changed

.DS_Store

0 Bytes
Binary file not shown.

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 = 9600)
2+
con <- ar_init("/dev/cu.SLAB_USBtoUART", baud = 57600)
33

44
ar_flush_hard(con)
55
ar_read(con)

docs/paper.html

+438
Large diffs are not rendered by default.

docs/paper.md

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
title: 'arduinor: An R Package for Easily Access Serial Data from Arduino'
3+
tags:
4+
- R
5+
- IoT
6+
- microcontroller
7+
- serial port
8+
authors:
9+
- name: Hao Zhu
10+
orcid: 0000-0002-3386-6076
11+
affiliation: 1
12+
- name: Brad Manor
13+
orcid: 0000-0000-0000-0000
14+
affiliation: 1,2
15+
- name: Wanting Yu
16+
orcid: 0000-0000-0000-0000
17+
affiliation: 1
18+
- name: Thomas Travison
19+
orcid: 0000-0000-0000-0000
20+
affiliation: 1, 2
21+
affiliations:
22+
- name: Marcus Institute for Aging Research, Hebrew Seniorlife
23+
index: 1
24+
- name: Harvard Medical School
25+
index: 2
26+
date: 1 March 2019
27+
bibliography: references.bib
28+
---
29+
30+
# Summary
31+
32+
Sensors are fun and they potentially can be quite benefitial to the science communities. These are small electroic chips that can "sense" this world from various aspects. For example, clinical researchers can use an accelerometer to track human body movements[@Gafurov_2009] while ecologist can use a GPS device to track the movement of birds[@Marvin_2016]. Today, these ideas can be easily prototyped using open-source hardware development platforms such as [arduino](https://www.arduino.cc/) and [Raspberry Pi](https://www.raspberrypi.org/). One critical step during this idea prototyping phase is to find out how to get the data out of the device for analytics. People usually choose to program the chip so it can save the data as files on a SD card. However, it would be useful to be able to stream data into analytical environment in real time.
33+
34+
`arduinor` is a R package that can read data from serial port into R with minimum requirements of setup. Currently, there are several ways to do this in R, such as this [serial](https://cran.r-project.org/web/packages/serial/index.html) and the `file` and `scan` method as described in [this blog post](https://magesblog.com/post/2015-02-17-reading-arduino-data-directly-into-r/). However, these methods are either too obscured to be used correctly or they lack the ability to flush buffed data in the serial port. `arduinor` provides a largely simplified API to users and under the hood, it's using [Rcpp](https://cran.r-project.org/web/packages/Rcpp/index.html) and imported the [arduino-serial](https://github.com/todbot/arduino-serial) C library. Basically users only need to provide the port name and baud rate, both of which can be easily found on the Arduino IDE, to be able to setup an connection. At the same time, it comes with a mechnism to forcefully dispose buffed data stuck in the serial port and makes the results more predictable and controllable.
35+
36+
```r
37+
# Example code of using arduinor
38+
library(arduinor)
39+
con <- ar_init("/dev/cu.SLAB_USBtoUART", baud = 9600)
40+
41+
# ar_monitor will print out the readings in R console until "Stopped"
42+
ar_monitor(con)
43+
> Flushing Port...
44+
> 97922,44
45+
> 98022,55
46+
> 98122,69
47+
> 98223,61
48+
> ...
49+
```
50+
51+
`arduinor` also provides a ploting app that can plot out signal inputs in real-time in a similar way as the "Serial Plotter" in the original Arduino IDE. With this app, people can choose to start/pause, reset, pick different variables and start to collect data into a file. By default, this function will split the string input by comma but user can provide their own separtion functions.
52+
53+
![](ar_plotter.png)
54+
55+
56+
# References

docs/references.bib

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
@article{Gafurov_2009,
2+
doi = {10.1155/2009/415817},
3+
url = {https://doi.org/10.1155%2F2009%2F415817},
4+
year = 2009,
5+
month = {jun},
6+
publisher = {Springer Nature},
7+
volume = {2009},
8+
number = {1},
9+
author = {Davrondzhon Gafurov and Einar Snekkenes},
10+
title = {Gait Recognition Using Wearable Motion Recording Sensors},
11+
journal = {{EURASIP} Journal on Advances in Signal Processing}
12+
}
13+
14+
@article{Marvin_2016,
15+
doi = {10.1016/j.gecco.2016.07.002},
16+
url = {https://doi.org/10.1016%2Fj.gecco.2016.07.002},
17+
year = 2016,
18+
month = {jul},
19+
publisher = {Elsevier {BV}},
20+
volume = {7},
21+
pages = {262--275},
22+
author = {David C. Marvin and Lian Pin Koh and Antony J. Lynam and Serge Wich and Andrew B. Davies and Ramesh Krishnamurthy and Emma Stokes and Ruth Starkey and Gregory P. Asner},
23+
title = {Integrating technologies for scalable ecology and conservation},
24+
journal = {Global Ecology and Conservation}
25+
}
26+

0 commit comments

Comments
 (0)