Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tiqi-js-tutorial
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Matt Grau
tiqi-js-tutorial
Commits
e64e3640
Commit
e64e3640
authored
3 years ago
by
Matt Grau
Browse files
Options
Downloads
Patches
Plain Diff
create mock device class
parent
09d81e36
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+3
-0
3 additions, 0 deletions
.gitignore
README.md
+8
-1
8 additions, 1 deletion
README.md
device/__init__.py
+1
-0
1 addition, 0 deletions
device/__init__.py
device/device.py
+32
-0
32 additions, 0 deletions
device/device.py
with
44 additions
and
1 deletion
.gitignore
+
3
−
0
View file @
e64e3640
# ignore any virtual environment
*venv
# ignore pycache
*__pycache__
\ No newline at end of file
This diff is collapsed.
Click to expand it.
README.md
+
8
−
1
View file @
e64e3640
# README
# First create a python virtual environment
#
# First create a python virtual environment
```
bash
python3
-m
venv demo_venv
...
...
@@ -17,4 +17,11 @@ which pip
$
~/tiqi-js-tutorial/demo_venv/bin/pip
which python
$
~/tiqi-js-tutorial/demo_venv/bin/python
```
## Create mock device class
```
bash
mkdir
device
touch
device/__init__.py
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
device/__init__.py
0 → 100644
+
1
−
0
View file @
e64e3640
from
.device
import
Device
This diff is collapsed.
Click to expand it.
device/device.py
0 → 100644
+
32
−
0
View file @
e64e3640
class
Device
:
__voltage
=
0.0
__current
=
0.0
def
__init__
(
self
):
# code to connect to device
self
.
__voltage
=
1.0
self
.
__current
=
0.0
def
_get_voltage
(
self
):
# read voltage from device
voltage
=
self
.
__voltage
return
voltage
def
_set_voltage
(
self
,
new_voltage
):
# write voltage to device
self
.
__voltage
=
new_voltage
def
_get_current
(
self
):
# read current from device
current
=
self
.
__curent
return
current
def
_set_current
(
self
,
new_current
):
# write current to device
self
.
__curent
=
new_current
def
_calculate_resistance
(
self
):
current
=
self
.
_get_current
()
voltage
=
self
.
_get_voltage
()
resistance
=
voltage
/
current
return
resistance
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment