Skip to content

Commit

Permalink
add copyright notices to all files
Browse files Browse the repository at this point in the history
  • Loading branch information
andete committed Mar 6, 2014
1 parent 86e0cb3 commit 5637c15
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 4 deletions.
2 changes: 2 additions & 0 deletions ble.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# (c) 2014 Productize <[email protected]>

import serial, time

import bglib
Expand Down
2 changes: 1 addition & 1 deletion btle-explorer.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
# (c) 2014 Joost Yervante Damad <[email protected]>
# (c) 2014 Productize <[email protected]>

import sys

Expand Down
4 changes: 2 additions & 2 deletions collect.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python

# loosely based on bglib_test_scanner.py released under MIT license by Jeff Rowberg, who also works for BlueGiga
# was at some point loosely based on bglib_test_scanner.py released under MIT license by Jeff Rowberg, who also works for BlueGiga

# (c) 2014 Joost Yervante Damad <[email protected]>
# (c) 2014 Productize <[email protected]>

import sys, time, datetime

Expand Down
2 changes: 2 additions & 0 deletions data/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# (c) 2014 Productize <[email protected]>

import services, productize, texas_instruments
from printers import print_default, print_uuid

Expand Down
2 changes: 2 additions & 0 deletions data/productize.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# (c) 2014 Productize <[email protected]>

service = dict()

attr = dict()
Expand Down
2 changes: 2 additions & 0 deletions data/services.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# (c) 2014 Productize <[email protected]>

from printers import print_uuid, print_string, print_char

service = dict(
Expand Down
2 changes: 2 additions & 0 deletions data/texas_instruments.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# (c) 2014 Productize <[email protected]>

def ti_print_ir_temp(data):
ambient = (data[2] + 256*data[3])/128.0
# TODO target temp
Expand Down
2 changes: 1 addition & 1 deletion gui.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
# (c) 2014 Joost Yervante Damad <[email protected]>
# (c) 2014 Productize <[email protected]>

import sys, time, datetime, ast

Expand Down

0 comments on commit 5637c15

Please sign in to comment.