aboutsummaryrefslogtreecommitdiff
path: root/flow-samples/rwc/src/main/scala/com/github/jodersky/flow/example/Main.scala
blob: 518efc29b7ed3c37da58bcd82a28b472f5b853cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.github.jodersky.flow
package example

import akka.actor.ActorSystem
import akka.actor.Props
import akka.actor.actorRef2Scala
import akka.util.ByteString

object Main {

  def main(args: Array[String]): Unit = {
    
    /*val isInt = Try(args(1).toInt) match { case Success(_) => true; case _ => false }
    if (!(args.length == 2 && isInt)) {
      println("invalid parameters")
      println("parameters: port baud")
      println("example: /dev/ttyACM0 115200")
      return
    }*/
    val port = "/dev/ttyACM0"
    val baud = 115200

    // InternalSerial.debug(true)

    implicit val system = ActorSystem("flow")
    val serial = system.actorOf(Props(classOf[SerialHandler], port, baud), name = "serial-handler")

    readLine()
    serial ! ByteString("hello back".getBytes())

    readLine()
    serial ! "close"
    readLine()

    system.shutdown()
  }
}