This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SoftwareSerial.h> | |
SoftwareSerial softSerial(10, 11); // RX, TX | |
enum { LED_PIN = 13 }; | |
void setup() | |
{ | |
pinMode(LED_PIN, OUTPUT); | |
softSerial.begin(9600); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-- | |
Author: Alexander Savochkin | |
This is example of using STArray for Dijkstra algorithm implementation in Haskell. | |
--} | |
module Main where | |
import Data.Char | |
import Data.Array | |
import Data.Array.ST |
NewerOlder