Skip to content

Commit

Permalink
Add FORTH implementation for a Forth Salon-compatible sample
Browse files Browse the repository at this point in the history
This FORTH implementation has been written from scratch to be
compatible with the Forth Salon (https://forthsalon.appspot.com)
website, in order to use it in conjunction with LED Matrix panels to
create interactive art projects.  It should be 100% compatible,
although it hasn't been fully tested with a substantial corpus from FS.
Minimal fuzzing has been performed and it's stable enough for a first
version.

No integration with the Lwan build system or with the rgb-led-matrix
(https://github.com/hzeller/rpi-rgb-led-matrix) project has been
written yet; those will come later.  The idea is to have something
similar to the Forth Salon website, but editing a haiku would make it
show up in a LED matrix panel.
  • Loading branch information
lpereira committed Jan 28, 2025
1 parent d2b882e commit e7697ac
Show file tree
Hide file tree
Showing 3 changed files with 1,144 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/samples/forthsalon/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
add_executable(forthsalon
main.c
)

target_link_libraries(forthsalon
${LWAN_COMMON_LIBS}
${ADDITIONAL_LIBRARIES}
)
Loading

0 comments on commit e7697ac

Please sign in to comment.