Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
esp8266-oled-ssd1306
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
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
c3pb
esp8266-oled-ssd1306
Commits
08753bd5
Commit
08753bd5
authored
7 years ago
by
Xavier
Browse files
Options
Downloads
Patches
Plain Diff
Fixed bad numbering of characters in comment
parent
321478a0
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
resources/glyphEditor.html
+2
-2
2 additions, 2 deletions
resources/glyphEditor.html
with
2 additions
and
2 deletions
resources/glyphEditor.html
+
2
−
2
View file @
08753bd5
...
...
@@ -115,10 +115,10 @@ const char My_Font[] PROGMEM = {
};
</textarea></td>
</tr>
<tr>
<tr>
<td>
First char code:
</td><td><input
placeholder=
"First char code"
type=
"number"
id=
"code"
value=
"1"
min=
"1"
/></td>
</tr>
<tr>
<td>
Width:
</td><td><input
placeholder=
"Font width"
type=
"number"
id=
"width"
value=
"10"
/></td>
</tr>
<tr>
...
...
@@ -276,7 +276,7 @@ const char My_Font[] PROGMEM = {
for
(
let
ch
=
0
;
ch
<
charCount
;
ch
++
)
{
chars
[
ch
].
getElementsByTagName
(
'
th
'
)[
0
].
textContent
=
`#
${
ch
+
firstCharCode
}
`
;
let
charBytes
=
[];
let
charCode
=
ch
ars
[
ch
].
getAttribute
(
'
c
ode
'
)
;
let
charCode
=
ch
+
firstCharC
ode
;
let
rows
=
chars
[
ch
].
getElementsByTagName
(
'
tr
'
);
let
notZero
=
false
;
// Browse each column
...
...
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