@hackage arduino-copilot1.1.1

Arduino programming in haskell using the Copilot stream DSL

Arduino programming in haskell using the Copilot stream DSL

See Copilot.Arduino for details on how to use write a program using this library.

For example, to make an Arduino blink its LED:

import Copilot.Arduino
main = arduino $ do
	led =: blinking
	delay =: constant 100

This and other examples are included in the examples/ directory, each with their own README explaining how to build and use them.