Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
IoTSmartMeter
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
kristian.tan
IoTSmartMeter
Commits
28fc464b
Commit
28fc464b
authored
Nov 14, 2019
by
Kristian Tan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update cost when cost per unit is updated
parent
e7e86e08
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
8 deletions
+1
-8
app.py
app.py
+1
-8
No files found.
app.py
View file @
28fc464b
...
...
@@ -58,20 +58,12 @@ def create_entry(change_pin):
# Formula to calculate kWh based on time and wattage
kwh
=
pins
[
change_pin
][
'wattage'
]
*
(
elapsed
/
3600
)
/
1000
print
(
pins
[
change_pin
][
'wattage'
])
print
(
elapsed
)
print
(
kwh
)
print
(
"LATEST ENTRY: "
)
print
(
latest_entry
)
# If there is already an entry for today, update on time
if
latest_entry
:
latest_entry_date
=
date
(
latest_entry
.
date
.
year
,
latest_entry
.
date
.
month
,
latest_entry
.
date
.
day
)
if
latest_entry_date
==
start_date
:
print
(
"LATEST ENTRY DATE: "
)
print
(
latest_entry_date
)
latest_entry
.
kwhUsed
+=
kwh
else
:
print
(
"NEW"
)
# If no entry for today, make one
entry
=
DailyUsage
(
date
=
start_date
,
kwhUsed
=
kwh
)
db
.
session
.
add
(
entry
)
...
...
@@ -181,6 +173,7 @@ def toggle_pin(change_pin):
def
handle_change_kWh
():
new_price
=
request
.
form
[
'kWhprice'
]
os
.
environ
[
'cost_per_kWh'
]
=
str
(
new_price
)
todays_cost
=
get_todays_cost
()
template_data
=
{
'pins'
:
pins
,
'daily_total'
:
daily_total
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment