Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
peterschwarz committed Jul 29, 2014
2 parents 7e21d2a + 7120cb7 commit c95b155
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject clj-firmata "1.1.1"
(defproject clj-firmata "1.1.2"
:description "clj-firmata provides access to Standard Firmata (http://firmata.org/) commands via clojure"
:url "https://github.com/peterschwarz/clj-firmata"
:license {:name "Eclipse Public License"
Expand Down
4 changes: 2 additions & 2 deletions src/firmata/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
(recur (.read in)
(accumulator result current-value)))))

(defn- consume-sysex
(defn consume-sysex
"Consumes bytes until the end of a SysEx response."
[in initial accumulator]
(consume-until SYSEX_END in initial accumulator))
Expand Down Expand Up @@ -216,7 +216,7 @@
:value value})
)

(defn- read-two-byte-data
(defn read-two-byte-data
[in]
(loop [result []
current-byte (.read in)]
Expand Down

0 comments on commit c95b155

Please sign in to comment.