From 7e6e1b723ad7434b0690b25e1364e14e4b142404 Mon Sep 17 00:00:00 2001 From: Frijol Date: Fri, 9 May 2014 15:50:37 -0700 Subject: [PATCH] added licensing headers to files --- examples/gps.js | 3 +++ index.js | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/examples/gps.js b/examples/gps.js index 9c322f0..3e50761 100644 --- a/examples/gps.js +++ b/examples/gps.js @@ -4,6 +4,9 @@ coordinates, detected satellites, timestamps, and altitude For best results, try it while outdoors. **********************************************************/ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + var tessel = require('tessel'); var gps = require('../').use(tessel.port("A")); diff --git a/index.js b/index.js index 9ee42f4..7a92f97 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,12 @@ +// Copyright 2014 Technical Machine, Inc. See the COPYRIGHT +// file at the top-level directory of this distribution. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + var util = require('util'); var EventEmitter = require('events').EventEmitter; var nmea = require('nmea');