-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# (c) 2014 Productize <[email protected]> | ||
|
||
import serial, time | ||
|
||
import bglib | ||
|
This file contains 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
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 | ||
|
||
|
This file contains 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
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 | ||
|
||
|
This file contains 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
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 | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# (c) 2014 Productize <[email protected]> | ||
|
||
service = dict() | ||
|
||
attr = dict() | ||
|
This file contains 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
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( | ||
|
This file contains 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
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 | ||
|
This file contains 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
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 | ||
|
||
|