Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
a2e0d92e
Commit
a2e0d92e
authored
9 years ago
by
Paul Sokolovsky
Browse files
Options
Downloads
Patches
Plain Diff
examples: Add example of I2C usage, taking PyBoard accelerometer as subject.
parent
f3b1a933
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/accel_i2c.py
+33
-0
33 additions, 0 deletions
examples/accel_i2c.py
with
33 additions
and
0 deletions
examples/accel_i2c.py
0 → 100644
+
33
−
0
View file @
a2e0d92e
# This is an example on how to access accelerometer on
# PyBoard directly using I2C bus. As such, it's more
# intended to be an I2C example, rather than accelerometer
# example. For the latter, using pyb.Accel class is
# much easier.
import
pyb
import
time
# Accelerometer needs to be powered on first. Even
# though signal is called "AVDD", and there's separate
# "DVDD", without AVDD, it won't event talk on I2C bus.
accel_pwr
=
pyb
.
Pin
(
"
MMA_AVDD
"
)
accel_pwr
.
value
(
1
)
i2c
=
pyb
.
I2C
(
1
)
addrs
=
i2c
.
scan
()
print
(
"
Scanning devices:
"
,
[
hex
(
x
)
for
x
in
addrs
])
if
0x4c
not
in
addrs
:
print
(
"
Accelerometer is not detected
"
)
ACCEL_ADDR
=
0x4c
ACCEL_AXIS_X_REG
=
0
ACCEL_MODE_REG
=
7
# Now activate measurements
i2c
.
mem_write
(
b
"
\x01
"
,
ACCEL_ADDR
,
ACCEL_MODE_REG
)
print
(
"
Try to move accelerometer and watch the values
"
)
while
True
:
val
=
i2c
.
mem_read
(
1
,
ACCEL_ADDR
,
ACCEL_AXIS_X_REG
)
print
(
val
[
0
])
time
.
sleep
(
1
)
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