Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/juliendelplanque/pharolcd

A wrapper for the tcp socket interface of lcddaemon written in Pharo Smalltalk.
https://github.com/juliendelplanque/pharolcd

Last synced: 16 days ago
JSON representation

A wrapper for the tcp socket interface of lcddaemon written in Pharo Smalltalk.

Awesome Lists containing this project

README

        

# pharolcd
A wrapper for the tcp socket interface of lcddaemon written in Pharo Smalltalk.
See [LCDDaemon](https://github.com/juliendelplanque/lcddaemon).

## Load this package
~~~
Metacello new
baseline: 'ICal';
repository: 'github://juliendelplanque/pharo-ical/repository';
load.
~~~

## Send a message to the lcddaemon
~~~
"Of course, change the parameters if needed."
client := LCDClient withServer: '127.0.0.1' port: 4242.

response := client sendMessage: (LCDMessage withSender: 'Pharo' contents: 'Hello from Pharo.').
~~~