mirror of
https://gitlab1.ptb.de/waltem01/Matrix
synced 2024-12-26 12:01:45 +00:00
configuring matrix dimensions
This commit is contained in:
parent
b11292ec85
commit
846778b969
@ -1,2 +1,9 @@
|
|||||||
API_SERVER_IP=
|
API_SERVER_IP=
|
||||||
API_SERVER_PORT=
|
API_SERVER_PORT=
|
||||||
|
|
||||||
|
|
||||||
|
PUBLIC_LED_WIDTH=
|
||||||
|
PUBLIC_LED_HEIGHT=
|
||||||
|
|
||||||
|
PUBLIC_LED_CHAIN=
|
||||||
|
PUBLIC_LED_PARALLEL=
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
// Interface to represent the entire matrix data
|
||||||
|
export interface Matrix {
|
||||||
|
width: number;
|
||||||
|
height: number;
|
||||||
|
scale?: number;
|
||||||
|
grid?: MatrixCell[][];
|
||||||
|
}
|
||||||
|
|
||||||
// Interface to represent a singualr matrix cell object
|
// Interface to represent a singualr matrix cell object
|
||||||
export interface MatrixCell {
|
export interface MatrixCell {
|
||||||
x: number;
|
x: number;
|
||||||
|
@ -1,5 +1,13 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
import {
|
||||||
|
PUBLIC_LED_WIDTH,
|
||||||
|
PUBLIC_LED_HEIGHT,
|
||||||
|
PUBLIC_LED_CHAIN,
|
||||||
|
PUBLIC_LED_PARALLEL
|
||||||
|
} from '$env/static/public';
|
||||||
|
import type { Matrix } from '$lib/client/matrix';
|
||||||
import type { APIResponse } from '$lib/interfaces';
|
import type { APIResponse } from '$lib/interfaces';
|
||||||
|
import { onMount } from 'svelte';
|
||||||
|
|
||||||
interface UploadData {
|
interface UploadData {
|
||||||
start: number;
|
start: number;
|
||||||
@ -8,7 +16,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
let imageURL: string | null, lastImage: File;
|
let imageURL: string | null, lastImage: File;
|
||||||
let uploadData: UploadData;
|
let uploadData: UploadData, matrix: Matrix;
|
||||||
|
|
||||||
async function updateMatrix() {
|
async function updateMatrix() {
|
||||||
await fetch('/api/redirect?endpoint=update');
|
await fetch('/api/redirect?endpoint=update');
|
||||||
@ -97,12 +105,19 @@
|
|||||||
elapsed: '0'
|
elapsed: '0'
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onMount(() => {
|
||||||
|
matrix = {
|
||||||
|
width: +PUBLIC_LED_WIDTH * +PUBLIC_LED_CHAIN,
|
||||||
|
height: +PUBLIC_LED_HEIGHT * +PUBLIC_LED_PARALLEL
|
||||||
|
};
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<input type="file" name="image" accept="image/*" on:change={uploadImage} />
|
<input type="file" name="image" accept="image/*" on:change={uploadImage} />
|
||||||
{#if imageURL}
|
{#if imageURL}
|
||||||
<img src={imageURL} alt="User uploaded" />
|
<img src={imageURL} alt="User uploaded" />
|
||||||
{#await fileAsDataURL(lastImage, 192, 192)}
|
{#await fileAsDataURL(lastImage, matrix.width, matrix.height)}
|
||||||
<p>Loading image data . . .</p>
|
<p>Loading image data . . .</p>
|
||||||
<p>{uploadData.elapsed} seconds elapsed.</p>
|
<p>{uploadData.elapsed} seconds elapsed.</p>
|
||||||
{:then dataUrl}
|
{:then dataUrl}
|
||||||
|
Loading…
Reference in New Issue
Block a user