Compare commits

...

5 Commits

Author SHA1 Message Date
turboencabulator 0b04912dc2
Merge 8bf419a5bd into a0f0193fca 2024-01-10 13:15:12 -07:00
Chris Esposito a0f0193fca
Update README.md 2024-01-04 09:39:02 +11:00
Chris Esposito b1d27b415c
Update README.md 2024-01-03 07:28:14 +11:00
Kyle Guinn 8bf419a5bd Convert bitmaps to PNG format
Reduces file size by over 99% for the 3 buffer images.
2021-11-13 18:15:41 -06:00
Kyle Guinn e8a854ee9b Fix the 256x256 icon size
Was an exact copy of the 48x48 icon.
New file generated with the following command:
convert PCB/labralogo.pretty/logo_edit.png -background '#008632' -resize 256x256 -gravity center -extent 256x256 -strip Desktop_Interface/resources/icon256/espotek-labrador.png

Regenerate the 48x48 icon as well with a similar command since it
reduces its file size by over a third.
2021-11-13 18:06:53 -06:00
11 changed files with 14 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 B

View File

@ -1,8 +1,8 @@
<RCC>
<qresource prefix="/bitmap">
<file>buffer_0.bmp</file>
<file>buffer_1.bmp</file>
<file>buffer_2.bmp</file>
<file>buffer_0.png</file>
<file>buffer_1.png</file>
<file>buffer_2.png</file>
<file>diagram.png</file>
</qresource>
</RCC>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -10,13 +10,13 @@ void bufferControl::refreshImage(void){
switch(numBuffers){
case 0:
bufferImage = QPixmap(":/bitmap/buffer_0.bmp");
bufferImage = QPixmap(":/bitmap/buffer_0.png");
break;
case 1:
bufferImage = QPixmap(":/bitmap/buffer_1.bmp");
bufferImage = QPixmap(":/bitmap/buffer_1.png");
break;
case 2:
bufferImage = QPixmap(":/bitmap/buffer_2.bmp");
bufferImage = QPixmap(":/bitmap/buffer_2.png");
break;
}

View File

@ -29,6 +29,14 @@ There are community contributed 3D printable cases available at Thingiverse, cou
* https://www.thingiverse.com/thing:3188243
* https://www.thingiverse.com/thing:4705392
* Dave Messink has designed [a case that can be laser cut from 3mm plywood](https://github.com/EspoTek/Labrador/files/13813693/Re__Labrador_Case.1.zip)
The binding posts and cables he used are from Amazon.
https://www.amazon.com/dp/B07YKYP8MN?psc=1&ref=ppx_yo2ov_dt_b_product_details
https://www.amazon.com/dp/B08KZGPTLM?ref=ppx_yo2ov_dt_b_product_details&th=1
https://www.amazon.com/dp/B08KZGPTLM?ref=ppx_yo2ov_dt_b_product_details&th=1
![20231217_120235](https://github.com/EspoTek/Labrador/assets/22040436/7245c645-ce89-41ae-a505-a47f29ab8875)
![20231217_120248](https://github.com/EspoTek/Labrador/assets/22040436/7ac3882c-1c8f-4fad-9f9a-03112eef8ff8)
# Building from Source
If you're looking to build from source but don't know where to start, Qt Creator is the easiest way to get your toes wet!
https://www.qt.io/download-open-source/