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
b9f892fa
Commit
b9f892fa
authored
Nov 12, 2019
by
Kristian Tan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding RPi.GPIO package and setting some pins
parent
03902bd3
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
67 additions
and
152 deletions
+67
-152
IoTSmartMeter.iml
.idea/IoTSmartMeter.iml
+3
-3
misc.xml
.idea/misc.xml
+1
-1
vcs.xml
.idea/vcs.xml
+6
-0
workspace.xml
.idea/workspace.xml
+33
-133
app.cpython-36.pyc
__pycache__/app.cpython-36.pyc
+0
-0
app.py
app.py
+24
-15
No files found.
.idea/IoTSmartMeter.iml
View file @
b9f892fa
...
...
@@ -4,10 +4,10 @@
<option
name=
"enabled"
value=
"true"
/>
</component>
<component
name=
"NewModuleRootManager"
>
<content
url=
"file://$MODULE_DIR$
/../IoTSmartMeter
"
>
<excludeFolder
url=
"file://$MODULE_DIR$/
../IoTSmartMeter/
venv"
/>
<content
url=
"file://$MODULE_DIR$"
>
<excludeFolder
url=
"file://$MODULE_DIR$/venv"
/>
</content>
<orderEntry
type=
"
inheritedJdk
"
/>
<orderEntry
type=
"
jdk"
jdkName=
"Python 3.6 (IoTSmartMeter)"
jdkType=
"Python SDK
"
/>
<orderEntry
type=
"sourceFolder"
forTests=
"false"
/>
</component>
<component
name=
"TemplatesService"
>
...
...
.idea/misc.xml
View file @
b9f892fa
...
...
@@ -3,5 +3,5 @@
<component
name=
"JavaScriptSettings"
>
<option
name=
"languageLevel"
value=
"ES6"
/>
</component>
<component
name=
"ProjectRootManager"
version=
"2"
project-jdk-name=
"Python 3.6 (
untitled
)"
project-jdk-type=
"Python SDK"
/>
<component
name=
"ProjectRootManager"
version=
"2"
project-jdk-name=
"Python 3.6 (
IoTSmartMeter
)"
project-jdk-type=
"Python SDK"
/>
</project>
\ No newline at end of file
.idea/vcs.xml
0 → 100644
View file @
b9f892fa
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"VcsDirectoryMappings"
>
<mapping
directory=
"$PROJECT_DIR$"
vcs=
"Git"
/>
</component>
</project>
\ No newline at end of file
.idea/workspace.xml
View file @
b9f892fa
This diff is collapsed.
Click to expand it.
__pycache__/app.cpython-36.pyc
View file @
b9f892fa
No preview for this file type
app.py
View file @
b9f892fa
from
flask
import
Flask
,
render_template
import
datetime
import
RPi.GPIO
as
GPIO
app
=
Flask
(
__name__
)
# Create a dictionary called pins to store the pin number, name, and pin state:
pins
=
{
24
:
{
'name'
:
'coffee maker'
,
'state'
:
GPIO
.
LOW
},
25
:
{
'name'
:
'lamp'
,
'state'
:
GPIO
.
LOW
}
}
# Set each pin as an output and make it low:
for
pin
in
pins
:
GPIO
.
setup
(
pin
,
GPIO
.
OUT
)
GPIO
.
output
(
pin
,
GPIO
.
LOW
)
@
app
.
route
(
"/"
)
def
hello
():
now
=
datetime
.
datetime
.
now
()
time_string
=
now
.
strftime
(
"
%
Y-
%
m-
%
d
%
H:
%
M"
)
def
main
():
# For each pin, read the pin state and store it in the pins dictionary:
for
pin
in
pins
:
pins
[
pin
][
'state'
]
=
GPIO
.
input
(
pin
)
# Put the pin dictionary into the template data dictionary:
template_data
=
{
'title'
:
'HELLO!'
,
'time'
:
time_string
'pins'
:
pins
}
# Pass the template data into the template main.html and return it to the user
return
render_template
(
'main.html'
,
**
template_data
)
@
app
.
route
(
'/button'
)
def
button
():
print
(
"Button press"
)
now
=
datetime
.
datetime
.
now
()
time_string
=
now
.
strftime
(
"
%
Y-
%
m-
%
d
%
H:
%
M"
)
template_data
=
{
'title'
:
'HELLO!'
,
'time'
:
time_string
}
return
render_template
(
'main.html'
,
**
template_data
)
if
__name__
==
'__main__'
:
app
.
run
(
host
=
'0.0.0.0'
,
port
=
8090
)
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