Re: Clojure Serial Connection

2010-09-22 Thread Eric Schulte
Related to controlling an Arduino with Clojure, a while ago I put together a wrapper enabling interacting with a group of IXM boards (cousin to the Arduino) from a Clojure REPL. http://repo.or.cz/w/ixm-repl.git Although in this case the boards are exposed through a shell script which the Clojure

Re: Clojure Serial Connection

2010-09-22 Thread Sam Aaron
If it's of any help, I wrapped up RXTX (2.2pre2) in a clojar with native binary support. You can get running with it by starting off with a project.clj that looks something like: (defproject foo.bar 0.0.1 :description Project Description Here :dependencies [[org.clojure/clojure 1.2.0]

Re: Clojure Serial Connection

2010-09-21 Thread Nurullah Akkaya
Hi Ivan, I have a project called Clodiuno which allows you to control an Arduino board using either serial or TCP/IP protocol, that may give you a head start, http://github.com/nakkaya/clodiuno/blob/master/src/clodiuno/firmata.clj http://nakkaya.com/clodiuno.html Regards... -- Nurullah Akkaya

Re: Clojure Serial Connection

2010-09-21 Thread Ivan Willig
Thanks!!! Ivan Willig Modi Research Group Columbia University On Tue, Sep 21, 2010 at 6:07 AM, Nurullah Akkaya nurul...@nakkaya.comwrote: Hi Ivan, I have a project called Clodiuno which allows you to control an Arduino board using either serial or TCP/IP protocol, that may give you a

Re: Clojure Serial Connection

2010-09-21 Thread Kyle Cordes
On Mon, Sep 20, 2010 at 10:17 PM, Ivan Willig iwil...@gmail.com wrote: I list, i am trying to connect to a USB GSM Modem with clojure. Basically, i want to open a serial connection to my modem and be able to pass commands to it. ( I think I am new to this whole modem thing).  I know I can do

Clojure Serial Connection

2010-09-20 Thread Ivan Willig
I list, i am trying to connect to a USB GSM Modem with clojure. Basically, i want to open a serial connection to my modem and be able to pass commands to it. ( I think I am new to this whole modem thing). I know I can do this in Java, but wanted to check if someone had a working solutions in