Skip to content

Commit 43eda35

Browse files
Updating url links
1 parent d965263 commit 43eda35

7 files changed

Lines changed: 12 additions & 13 deletions

File tree

examples/erm19264/bitmap/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ int HWSPI_FLAGS = 0; // last 2 LSB bits define SPI mode, see readme, mode 0 for
3939
ERM19264_UC1609 myLCD(MY_LCD_WIDTH ,MY_LCD_HEIGHT , RST, CD) ;
4040

4141

42-
// 192x64px bitmap data,'UC1609' SW used to make https://javl.github.io/image2cpp/ vertical addressing
42+
// 192x64px bitmap data,'UC1609' SW used to make https://github.com/gavinlyonsrepo/Guardian_LTSM/ vertical addressing
4343
// The buffer will be assigned this data at init
4444
// Note this is the screen buffer filled with a Bitmap , can only be used once startup.
4545
// This is not a bitmap but bitmap data pre-loaded into the screen buffer array.

examples/include/Bitmap_test_data.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* @file examples/include/Bitmap_test_data.hpp
33
* @brief data file to hold bitmap test data for graphic displays
4-
* @details SW used to make code https://javl.github.io/image2cpp/
4+
* @details SW used to make code https://github.com/gavinlyonsrepo/Guardian_LTSM/
55
*/
66

77
# pragma once

extra/doc/bitmap_16/README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,13 @@
77
| ------ | ------ | ------ | ------ |
88
| drawIcon | bi-colour array | (0-127) X 8 | Data vertically addressed |
99
| drawBitmap | bi-colour array | 2 | Data horizontally addressed |
10-
| drawBitmap16 | 16 bit color 565 BMP files or array | 32 | ------ |
11-
| drawBitmap24 | 24 bit color BMP files or array | 48 | Converted by software to 16-bit color |
10+
| drawBitmap16 | 16 bit color 565 image files or array | 32 | ------ |
11+
| drawBitmap24 | 24 bit color image files or array | 48 | Converted by software to 16-bit color |
1212
| drawSprite| 16 bit color 565 array | 32 | Does not use a buffer , draws pixel by pixel , ignores background chosen color|
1313

1414
1. Bitmap Size (in KiB)= (Image Width×Image Height×Bits Per Pixel)/(8×1024)
1515
2. Pixel size column assumes 128 by 128 screen.
16-
3. The data array for 1 and 2 is created from image files using file data conversion tool [link](https://javl.github.io/image2cpp/)
17-
4. The data array for 3 - 5 is created from BMP files using file data conversion tool [link](https://notisrac.github.io/FileToCArray/)
18-
5. For 3 and 4 better just to use BMP files direct from file system see examples.
19-
20-
These class functions will return an error code in event of error, see API for more details.
16+
3. The mentioned bitmap data arrays for images are created with this [file data conversion tool](https://github.com/gavinlyonsrepo/Guardian_LTSM)
17+
4. For drawBitmap16 and DrawBitmap24 easier just to use image files direct from file system rather than arrays
18+
see examples showing BMP file usage.
19+
5. These class functions will return an error code in event of error, see API for more details.

extra/doc/ch1115/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Bitmap excepted size = 128 * (64/8) = 1024 bytes.
116116
A horizontal addressed Bitmap's width must be divisible by 8. eg, for a bitmap with width=88 and height=48.
117117
Bitmap excepted size = (88/8) * 48 = 528 bytes.
118118

119-
Bitmaps can be turned to data [here at link]( https://javl.github.io/image2cpp/)
119+
Bitmaps can be turned to data [here at link]( https://github.com/gavinlyonsrepo/Guardian_LTSM/)
120120
See example file "BITMAP" for more details.
121121

122122
### User adjustments

extra/doc/erm19264/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ There is a few different ways of displaying bitmaps,
9898
| 4 | drawBitmap() | Vertical | default, setDrawBitmapAddr(true) |
9999
| 5 | drawBitmap() | Horizontal | setDrawBitmapAddr(false) |
100100

101-
See the bitmap example file for more details on each method. Bitmaps can be turned to data [here at link]( https://javl.github.io/image2cpp/) , Bitmaps should be defined as const buffers non-const, for methods 3 buffer can be initialised with bitmap data.
101+
See the bitmap example file for more details on each method. Bitmaps can be turned to data [here at link]( https://github.com/gavinlyonsrepo/Guardian_LTSM/) , Bitmaps should be defined as const buffers non-const, for methods 3 buffer can be initialised with bitmap data.
102102

103103
### User Adjustments
104104

extra/doc/sh110x/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,5 @@ Different bitmaps methods can be used.
7777
| 1 | drawBitmap() | Vertical | default, setDrawBitmapAddr(true) |
7878
| 2 | drawBitmap() | Horizontal | setDrawBitmapAddr(false) |
7979

80-
Bitmaps can be turned to data [here at link]( https://javl.github.io/image2cpp/)
80+
Bitmaps can be turned to data [here at link]( https://github.com/gavinlyonsrepo/Guardian_LTSM/)
8181
See example file "BITMAP" for more details.

extra/doc/ssd1306/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Different bitmaps methods can be used.
8282
| 1 | drawBitmap() | Vertical | default, setDrawBitmapAddr(true) |
8383
| 2 | drawBitmap() | Horizontal | setDrawBitmapAddr(false) |
8484

85-
Bitmaps can be turned to data [here at link]( https://javl.github.io/image2cpp/)
85+
Bitmaps can be turned to data [here at link]( https://github.com/gavinlyonsrepo/Guardian_LTSM/)
8686
See example file "BITMAP" for more details.
8787

8888
## Output

0 commit comments

Comments
 (0)