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
d5e50793
Commit
d5e50793
authored
3 years ago
by
Matt Grau
Browse files
Options
Downloads
Patches
Plain Diff
create bad example (multiple sources of truth)
parent
e64e3640
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
device/device.py
+8
-3
8 additions, 3 deletions
device/device.py
with
8 additions
and
3 deletions
device/device.py
+
8
−
3
View file @
d5e50793
...
...
@@ -2,6 +2,9 @@ class Device:
__voltage
=
0.0
__current
=
0.0
voltage
=
None
current
=
None
def
__init__
(
self
):
# code to connect to device
self
.
__voltage
=
1.0
...
...
@@ -10,6 +13,7 @@ class Device:
def
_get_voltage
(
self
):
# read voltage from device
voltage
=
self
.
__voltage
self
.
voltage
=
voltage
return
voltage
def
_set_voltage
(
self
,
new_voltage
):
...
...
@@ -19,14 +23,15 @@ class Device:
def
_get_current
(
self
):
# read current from device
current
=
self
.
__curent
self
.
current
=
current
return
current
def
_set_current
(
self
,
new_current
):
# write current to device
self
.
__curent
=
new_current
self
.
__cur
r
ent
=
new_current
def
_calculate_resistance
(
self
):
current
=
self
.
_get_
current
()
voltage
=
self
.
_get_
voltage
()
current
=
self
.
current
voltage
=
self
.
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