Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/juliendelplanque/pharolcd
- Owner: juliendelplanque
- License: mit
- Created: 2015-06-14T10:42:21.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-29T17:11:41.000Z (over 9 years ago)
- Last Synced: 2024-10-31T07:05:19.243Z (2 months ago)
- Language: Smalltalk
- Homepage:
- Size: 172 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.').
~~~