JuliaBerry / SenseHat.jl

Julia package for the Raspberry Pi Sense HAT
Other
15 stars 12 forks source link

Add show_char and show_message #4

Closed Ellipse0934 closed 6 years ago

Ellipse0934 commented 6 years ago

Added 5x8 pixel font, show_char() and show_message() functions, removed sticktask(). Removed deprecations from LED module

Ellipse0934 commented 6 years ago

1) Any name changes for show_char() and show_message() ?

2) I removed deprecations based on their warning messages. I haven't investigated beyond that.

3) Removed sticktask() because produce() was deprecated and the same effect can be achieved by doing something like:

c = Channel{StickEvent}(32)
@async while true put!(c, readstick()) end

@aviks , @simonbyrne

simonbyrne commented 6 years ago

Thanks!