packages feed

arduino-copilot-1.0.1: README

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.