Skip to content

Commit 3157abe

Browse files
Version 0.1.3
1 parent cdc515d commit 3157abe

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

console.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/env python
2-
# -*- coding: utf_8 -*-
2+
# coding: utf-8
33

44
# Filename: console.py
55
# Description: Communicate with Hive/AlertMe devices via a XBee
66
# Author: James Saunders [james@saunders-family.net]
77
# Copyright: Copyright (C) 2017 James Saunders
88
# License: MIT
9-
# Version: 0.1.2
9+
# Version: 0.1.3
1010

1111

1212
'''

hub.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
#! /usr/bin/python
1+
#!/usr/bin/python
22
# coding: utf-8
33

44
# Filename: hub.py
55
# Description: Communicate with Hive/AlertMe devices via a XBee
66
# Author: James Saunders [james@saunders-family.net]
77
# Copyright: Copyright (C) 2017 James Saunders
88
# License: MIT
9-
# Version: 0.1.2
9+
# Version: 0.1.3
1010

1111
import serial
1212
import logging

rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Author: James Saunders [james@saunders-family.net]
77
# Copyright: Copyright (C) 2017 James Saunders
88
# License: MIT
9-
# Version: 0.1.2
9+
# Version: 0.1.3
1010

1111
from flask import Flask, jsonify, abort, make_response, request
1212
import serial

setup.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
#!/usr/bin/python
22
# coding: utf-8
33

4+
# Filename: setup.py
5+
# Description: Sets up DB used by hub.py
6+
# Author: James Saunders [james@saunders-family.net]
7+
# Copyright: Copyright (C) 2017 James Saunders
8+
# License: MIT
9+
# Version: 0.1.3
10+
411
import sqlite3
512

613
# Setup DB Connection

0 commit comments

Comments
 (0)