Skip to content

Commit

Permalink
in honors to the discontinued SAA1064 ..
Browse files Browse the repository at this point in the history
  • Loading branch information
graetz23 committed Apr 14, 2020
1 parent 84d0304 commit 00edd29
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,9 @@ have fun :-)
## Change Log
**20200414**
- bug fix on added say word method; was in byte code not array index!
**20200413**
- released version v1.1:
- due to [issue \#1](https://github.com/graetz23/coolSAA1064/issues/1), the created _setup()_ method for calling 'Wire.begin()',
Expand Down
16 changes: 8 additions & 8 deletions coolSAA1064.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Christian
* graetz23@gmail.com
* created 20140215
* version 20200413
* version 20200414
*/

/**************************************80**************************************/
Expand Down Expand Up @@ -526,7 +526,7 @@ SAA1064::scrollDate( int day, int month, int year, int milliSeconds ) {
void // displays the word On
SAA1064::sayOn( void ) {

say( -1, -1, 63, 84 );
say( -1, -1, 21, 20 );

} // SAA1064::sayOn

Expand All @@ -535,7 +535,7 @@ SAA1064::sayOn( void ) {
void // displays the word OFF
SAA1064::sayOFF( void ) {

say( -1, 63, 113, 113 );
say( -1, 0, 21, 15 ); // HEX => 15 == F

} // SAA1064::sayOFF

Expand All @@ -544,7 +544,7 @@ SAA1064::sayOFF( void ) {
void // displays the word gO
SAA1064::sayGO( void ) {

say( -1, -1, 111, 63 );
say( -1, -1, 9, 21 );

} // SAA1064::sayG0

Expand All @@ -553,7 +553,7 @@ SAA1064::sayGO( void ) {
void // displays the word OPEn
SAA1064::sayOPEn( void ) {

say( 63, 115, 121, 84 );
say( 0, 22, 14, 20 );

} // SAA1064::sayOPEn

Expand All @@ -562,7 +562,7 @@ SAA1064::sayOPEn( void ) {
void // displays the word LOAd
SAA1064::sayLOAd( void ) {

say( 56, 63, 119, 94 );
say( 19, 21, 10, 13 ); // HEX; 10 = A and 13 = d

} // SAA1064::sayLOAd

Expand All @@ -571,7 +571,7 @@ SAA1064::sayLOAd( void ) {
void // displays the word PLAY
SAA1064::sayPLAY( void ) {

say( 115, 56, 119, 19 );
say( 22, 19, 10, 26 );

} // SAA1064::sayPLAY

Expand All @@ -580,7 +580,7 @@ SAA1064::sayPLAY( void ) {
void // displays the word dISC
SAA1064::sayDISC( void ) {

say( 94, 6, 109, 12 );
say( 94, 6, 5, 12 );

} // SAA1064::sayDISC

Expand Down

0 comments on commit 00edd29

Please sign in to comment.