Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
ring
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
Model registry
Operate
Environments
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
ring
Merge requests
!1
add M0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add M0
jake
into
master
Overview
0
Commits
1
Pipelines
0
Changes
8
Merged
Jake Read
requested to merge
jake
into
master
7 years ago
Overview
0
Commits
1
Pipelines
0
Changes
8
Expand
added M0 w/ adafruit feather dev board with index.hml, and updated json
0
0
Merge request reports
Viewing commit
3f6b701f
Show latest version
8 files
+
261
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
3f6b701f
add M0
· 3f6b701f
Jake Read
authored
7 years ago
gpio/m0/m0_arduino/m0_arduino.ino
0 → 100644
+
12
−
0
Options
void
setup
()
{
// put your setup code here, to run once:
pinMode
(
10
,
OUTPUT
);
pinMode
(
11
,
INPUT
);
}
void
loop
()
{
while
(
1
)
{
digitalWrite
(
10
,
1
-
digitalRead
(
11
));
}
}
Loading