mirror of
https://gitlab1.ptb.de/waltem01/Matrix
synced 2024-12-26 12:01:45 +00:00
Compare commits
2 Commits
80ca56992c
...
c107fcff44
Author | SHA1 | Date | |
---|---|---|---|
|
c107fcff44 | ||
|
30ea6032c9 |
@ -26,11 +26,11 @@ export interface MatrixCell {
|
||||
// in the project-wide .env file. This is intentional. The optional-
|
||||
// chaining operator will catch these errors.
|
||||
export function initializeMatrix(): Matrix {
|
||||
const led_width = Number(env?.PUBLIC_LED_WIDTH ?? '64');
|
||||
const led_height = Number(env?.PUBLIC_LED_HEIGHT ?? '64');
|
||||
const led_width = Number(env.PUBLIC_LED_WIDTH ?? '64');
|
||||
const led_height = Number(env.PUBLIC_LED_HEIGHT ?? '64');
|
||||
|
||||
const led_chain = Number(env?.PUBLIC_LED_CHAIN ?? '1');
|
||||
const led_parallel = Number(env?.PUBLIC_LED_PARALLEL ?? '1');
|
||||
const led_chain = Number(env.PUBLIC_LED_CHAIN ?? '1');
|
||||
const led_parallel = Number(env.PUBLIC_LED_PARALLEL ?? '1');
|
||||
|
||||
return {
|
||||
width: led_width * led_parallel,
|
||||
|
@ -1,5 +1,7 @@
|
||||
import { API_SERVER_IP, API_SERVER_PORT } from '$env/static/private';
|
||||
import * as env from '$env/static/private';
|
||||
|
||||
export function buildAPIStr(endpoint: string) {
|
||||
const API_SERVER_IP = env.API_SERVER_IP;
|
||||
const API_SERVER_PORT = env.API_SERVER_PORT;
|
||||
return `http://${API_SERVER_IP ?? 'localhost'}:${API_SERVER_PORT ?? '8080'}/${endpoint}`;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user