Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Public Projects
dotmatrixmodule
Commits
98a162ad
Commit
98a162ad
authored
Jun 01, 2019
by
Alexander Detsch
🐘
Browse files
changed view- and scroll direction
parent
d604bd17
Changes
1
Hide whitespace changes
Inline
Side-by-side
dotmatrixmodule/dotmatrixmodule/lib/Dotmatrix.cpp
View file @
98a162ad
...
...
@@ -96,7 +96,7 @@ bool e = true;
void
Dotmatrix
::
showChar
()
{
// move screen one pixel to the left
for
(
uint8_t
i
=
0
;
i
<
7
;
i
++
)
{
screenMem
[
i
]
<<
=
1
;
screenMem
[
i
]
>>
=
1
;
}
if
(
charPointer
==
charLength
)
{
...
...
@@ -117,7 +117,7 @@ void Dotmatrix::showChar() {
for
(
uint8_t
i
=
0
;
i
<
7
;
i
++
)
{
if
((
currentColumn
&
(
1
<<
i
))
==
(
1
<<
i
))
{
screenMem
[
i
]
|=
1
;
screenMem
[
i
]
|=
0x80
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment