Skip to content

Commit be5f968

Browse files
committed
Finished major components of this package
1 parent 4eb2363 commit be5f968

23 files changed

+425
-329
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
src/*.o
66
src/*.so
77
src/*.dll
8+
.DS_Store

DESCRIPTION

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
Package: arduinor
1+
Package: arduino
22
Type: Package
33
Title: What the Package Does in One 'Title Case' Line
44
Version: 1.0
5-
Date: 2018-02-11
5+
Date: 2018-02-20
66
Author: Your Name
77
Maintainer: Your Name <[email protected]>
8-
Description: One paragraph description of what the package does as one or
9-
more full sentences.
8+
Description: One paragraph description of what the package does as one or more full sentences.
109
License: GPL (>= 2)
1110
Imports: Rcpp (>= 0.12.15)
1211
LinkingTo: Rcpp
12+
RoxygenNote: 6.0.1

NAMESPACE

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
useDynLib(arduinor, .registration=TRUE)
2-
exportPattern("^[[:alpha:]]+")
3-
importFrom(Rcpp, evalCpp)
1+
# Generated by roxygen2: do not edit by hand
2+
3+
export(ar_close)
4+
export(ar_flush)
5+
export(ar_init)
6+
export(ar_read)
7+
export(ar_stream)
8+
importFrom(Rcpp,sourceCpp)
9+
useDynLib(arduino)

R/RcppExports.R

+80-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,85 @@
11
# Generated by using Rcpp::compileAttributes() -> do not edit by hand
22
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
33

4-
rcpp_hello_world <- function() {
5-
.Call(`_arduinor_rcpp_hello_world`)
4+
#' Initiate a connection to the serial port
5+
#'
6+
#' @param serialport Name of the serial port (e.g. "/dev/tty.usbserial","COM1")
7+
#' @param baud Baud rate (bps) in integer.
8+
#'
9+
#' @description This function sets up a connection to the serial port at the
10+
#' specified port name and baud rate. The port is set in 8-N-1 mode and is
11+
#' opened in fully raw mode so you can send binary data.
12+
#'
13+
#' @examples
14+
#' \dontrun{
15+
#' # On Windows
16+
#' con <- ar_init("COM1")
17+
#'
18+
#' # On Mac
19+
#' con <- ar_init("/dev/cu.SLAB_USBtoUART")
20+
#' }
21+
#'
22+
#' @return If connection is setup successfully, this function will return the
23+
#' file descriptor. If not, it will return -1.
24+
#'
25+
#' @export
26+
ar_init <- function(serialport, baud = 9600L) {
27+
.Call('_arduino_ar_init', PACKAGE = 'arduino', serialport, baud)
28+
}
29+
30+
#' Close Connection to a serial port
31+
#'
32+
#' @description This function closes the connection opened by `ar_init()`.
33+
#'
34+
#' @param fd File descriptor returned by `ar_init()`. Should be an integer.
35+
#'
36+
#' @examples
37+
#' \dontrun{
38+
#' con <- ar_init("/dev/cu.SLAB_USBtoUART")
39+
#' ar_close(con)
40+
#' }
41+
#'
42+
#' @export
43+
ar_close <- function(fd) {
44+
.Call('_arduino_ar_close', PACKAGE = 'arduino', fd)
45+
}
46+
47+
#' Read one entry of input from an opened serial connection
48+
#'
49+
#' @description This function reads one entry of input from an opened serial
50+
#' port. Each line of entry is identified by the end of line character
51+
#' `eolchar`.
52+
#'
53+
#' @param fd File descriptor returned by `ar_init()`. Should be an integer.
54+
#' @param eolchar End of line character. Default value is `'\\n'`
55+
#' @param buf_max Maximum length of one line of entry. Default is 256.
56+
#' @param timeout Timeout for reads in millisecs. Default is 5000 ms.
57+
#'
58+
#' @examples
59+
#' \dontrun{
60+
#' con <- ar_init("/dev/cu.SLAB_USBtoUART")
61+
#' ar_read(con)
62+
#' }
63+
#'
64+
#' @export
65+
ar_read <- function(fd, eolchar = '\n', buf_max = 256L, timeout = 5000L) {
66+
.Call('_arduino_ar_read', PACKAGE = 'arduino', fd, eolchar, buf_max, timeout)
67+
}
68+
69+
#' Flush serial port
70+
#'
71+
#' @description clearing the serial port's buffer
72+
#'
73+
#' @param fd File descriptor returned by `ar_init()`. Should be an integer.
74+
#'
75+
#' @examples
76+
#' \dontrun{
77+
#' con <- ar_init("/dev/cu.SLAB_USBtoUART")
78+
#' ar_flush(con)
79+
#' }
80+
#'
81+
#' @export
82+
ar_flush <- function(fd) {
83+
.Call('_arduino_ar_flush', PACKAGE = 'arduino', fd)
684
}
785

R/ar_stream.R

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#' Stream serial port data into R console
2+
#'
3+
#' @description This function wraps around `ar_read()` and will read serial
4+
#' port data into R console until user stop it.
5+
#'
6+
#' @param fd File descriptor returned by `ar_init()`. Should be an integer.
7+
#' @param eolchar End of line character. Default value is `'\\n'`
8+
#' @param buf_max Maximum length of one line of entry. Default is 256.
9+
#' @param timeout Timeout for reads in millisecs. Default is 5000 ms.
10+
#'
11+
#' @export
12+
ar_stream <- function(fd, eolchar = "\n", buf_max = 256, timeout = 5000) {
13+
repeat(cat(ar_read(fd, eolchar, buf_max, timeout)))
14+
}

R/arduino-package.R

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#' arduino
2+
#'
3+
#' @name arduino-package
4+
#' @aliases arduino
5+
#' @docType package
6+
#' @keywords package
7+
#' @useDynLib arduino
8+
#' @importFrom Rcpp sourceCpp
9+
NULL

R/zzz.R

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.onUnload <- function(libpath) {
2+
library.dynam.unload("arduino", libpath)
3+
}

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# arduino
2+
> Arduino is an open source computer hardware and software company, project, and user community that designs and manufactures single-board microcontrollers and microcontroller kits for building digital devices and interactive objects that can sense and control objects in the physical world. --Wikipedia
3+
4+
As one important piece of the fast growing ["IoT"](https://en.wikipedia.org/wiki/Internet_of_things) movement, arduino chips enable scientists and hobbyists to build customizable digital devices at will at a very inexpensive price. For the scientific community, it opens up a new way to collect various formats of data, such as accelerometer, gyroscope, thermometer and IR. Data collected by arduino can be sent to computers both wirelessly (through the WiFi kit on some recent devices such as ESP8266) or wirely through serial ports. This package handles reading arduino data from serial port into R.
5+
6+
Current approaches in R, including the `serial` package or [this post](https://www.r-bloggers.com/connecting-the-real-world-to-r-with-an-arduino/), both have dependency requirements. This package binds the light-weight [arduino-serial](https://github.com/todbot/arduino-serial) C library to R and is both dependency-free and fast.
7+
8+
# Installation
9+
```r
10+
devtools::install("hebrewseniorlife/arduino")
11+
```
12+
13+
# Getting Started
14+
```r
15+
library(arduino)
16+
17+
# Use the baud rate you set in `Serial.begin();` in arduino
18+
con <- ar_init("/dev/cu.SLAB_USBtoUART", baud = 57600)
19+
20+
# Start to stream arduino data into console. Press STOP to stop.
21+
ar_stream(con)
22+
```

arduinor.Rproj arduino.Rproj

File renamed without changes.

man/ar_close.Rd

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/ar_flush.Rd

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/ar_init.Rd

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/ar_read.Rd

+29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/ar_stream.Rd

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/arduino-package.Rd

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/rcpp_hello_world.Rd

-17
This file was deleted.

src/.DS_Store

2 KB
Binary file not shown.

src/LICENSE

-21
This file was deleted.

0 commit comments

Comments
 (0)