Advertisement
Guest User

Benchmark

a guest
Feb 4th, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Add as dependency:
  2. [gpio "0.2.1"]
  3.  
  4. (ns benchmark.core
  5.   (require [gpio.core :refer :all])
  6.   (:gen-class))
  7.  
  8. (defn -main
  9.   "I don't do a whole lot ... yet."
  10.   [& args]
  11.   (set-direction 18 :out)
  12.   (time (dotimes [_ 1000000]
  13.     (write-value 18 true)
  14.     (write-value 18 false))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement