O que é o formato de ficheiro LLSP?
Um arquivo com a extensão .llsp é um Projeto LEGO Education SPIKE, salvo pela versão 2 do LEGO Education SPIKE App. Ele contém um programa que um aluno construiu para um hub de robótica SPIKE Prime ou SPIKE Essential, junto com suas variáveis e configurações. O ambiente de codificação baseia-se no Scratch 3, portanto, um projeto pode ser escrito com blocos de palavras do tipo arrastar-e-soltar ou em MicroPython.
Por baixo, um arquivo .llsp é um arquivo ZIP. Renomear uma cópia para .zip e extraí-la revela um descritor de projeto, uma captura de tela vetorial .svg usada como miniatura e um arquivo scratch.sb3 incorporado. Esse arquivo .sb3 é um projeto Scratch 3 padrão, e seu project.json carrega a lista plana de pilhas de blocos e variáveis exatamente como aparecem no editor. Em 2023, o SPIKE App 3 substituiu este formato pelo .llsp3, e os dois não são intercambiáveis em versões mais antigas do aplicativo.
Segurança e proteção
RISCO: LOWAn .llsp file is a data project, not an executable. It holds Scratch-style block code, variables, an SVG preview, and optional sound assets, none of which run on your computer outside the SPIKE App. As a ZIP archive it could in theory carry unexpected members, so extract files from unknown sources with a normal archive tool and check what is inside. Corruption of the internal project.json is a known cause of a project that will not load.
Detalhes do formato
em resumo- MINDSTORMS Robot Inventor projects - The LEGO MINDSTORMS Robot Inventor (set 51515) app shares the same Scratch-3-based engine and can produce and read .llsp-style word-block projects, though its own projects usually carry the .lms extension.
Programas que abrem arquivos LLSP
Detalhes técnicos
especificação profunda| Encoding | ZIP-compressed binary container holding JSON, SB3, and SVG members |
| Byte order | N/A (ZIP structure is little-endian) |
| Container | ZIP archive (renamed .zip) |
| Compression | DEFLATE (standard ZIP) |
| Encryption | None; contents are stored unencrypted and can be extracted with any ZIP tool |
| Typical size | 10 KB to a few MB, depending on program size and any embedded sound assets |
| Structure | Outer ZIP contains a project descriptor/manifest (JSON), an SVG vector screenshot used as the project thumbnail/preview, and an embedded scratch.sb3 file. The scratch.sb3 is itself a ZIP that holds project.json, which stores the flat stack of code blocks and variables shown in the editor. |
| Integrity | Per-member CRC-32 stored in the ZIP directory; no separate signature or hash for the project as a whole |
| Platforms | Windows, macOS, iOS, iPadOS, Android, Chrome OS |
| Notes | Created by the word-block (icon-block) and Python programming modes of the LEGO Education SPIKE App 2 for the SPIKE Prime (45678) and SPIKE Essential (45345) sets, and also used by MINDSTORMS Robot Inventor. SPIKE App 3 replaced this format with the .llsp3 extension, and .llsp3 files are not backward-compatible with older app versions. Because the code lives inside an embedded Scratch 3 project.json, community tools can read the blocks directly. |
| Lançado | 2019 |
| Versão mais recente | SPIKE App 2 project format (superseded by .llsp3 in SPIKE App 3) |
| Especificação | spike.legoeducation.com |
Conversões de LLSP
Perguntas e Respostas da Comunidade
perguntado por usuáriosAinda não há perguntas - seja o primeiro a perguntar sobre arquivos LLSP.
Perguntas frequentes
Como faço para abrir um arquivo .llsp?
Qual é a diferença entre .llsp e .llsp3?
.llsp é o formato de projeto do SPIKE App 2, enquanto .llsp3 é o formato do SPIKE App 3. Eles são estruturados de forma diferente e não são intercambiáveis em versões de aplicativos mais antigas, embora o SPIKE App 3 possa importar um .llsp e salvá-lo como .llsp3.