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
b88bf427
Commit
b88bf427
authored
6 years ago
by
Paul Sokolovsky
Committed by
Damien George
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
zephyr/README: Reorder content related to recently added I2C.
So it fits better with existing narrative.
parent
c066dadc
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
ports/zephyr/README.md
+8
-8
8 additions, 8 deletions
ports/zephyr/README.md
with
8 additions
and
8 deletions
ports/zephyr/README.md
+
8
−
8
View file @
b88bf427
...
...
@@ -12,8 +12,8 @@ Features supported at this time:
*
REPL (interactive prompt) over Zephyr UART console.
*
`utime`
module for time measurements and delays.
*
`machine.I2C`
class for I2C control.
*
`machine.Pin`
class for GPIO control.
*
`machine.I2C`
class for I2C control.
*
`usocket`
module for networking (IPv4/IPv6).
*
"Frozen modules" support to allow to bundle Python modules together
with firmware. Including complete applications, including with
...
...
@@ -82,13 +82,6 @@ To blink an LED:
LED.value(0)
time.sleep(0.5)
To scan for I2C slaves:
from machine import I2C
i2c = I2C("I2C_0")
i2c.scan()
The above code uses an LED location for a FRDM-K64F board (port B, pin 21;
following Zephyr conventions port are identified by "GPIO_x", where
*x*
starts from 0). You will need to adjust it for another board (using board's
...
...
@@ -96,6 +89,13 @@ reference materials). To execute the above sample, copy it to clipboard, in
MicroPython REPL enter "paste mode" using Ctrl+E, paste clipboard, press
Ctrl+D to finish paste mode and start execution.
Example of using I2C to scan for I2C slaves:
from machine import I2C
i2c = I2C("I2C_0")
i2c.scan()
Minimal build
-------------
...
...
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