pharolcd

Description

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

Details

Source
GitHub
Dialect
pharo (25% confidence)
License
MIT
Created
June 14, 2015
Updated
July 24, 2015

Categories

Networking

README excerpt

# 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.').
~~~
← Back to results