FAQ
Hello,

I'm trying to build a small program that outputs info to a small SPI tft
display connected to a RPI device, but I can't find much info about that or
where to start.
I won't need any touch capability on that display for now, all I'd like
would be to output some text and images.

I'm using this display http://www.adafruit.com/products/2441 But I'll be
able to use others if needed.

The preferred way would be doing this using Go + QML but not strict?

Ideas and different approaches are welcome.

best regards,
Alex

--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Search Discussions

  • Ajstarks at Jun 12, 2015 at 3:17 pm
    I don't know about the SPI connection, but perhaps
    https://github.com/ajstarks/openvg will work.
    It includes Go bindings for the OpenVG API.

    On Friday, June 12, 2015 at 8:34:31 AM UTC-4, [email protected] wrote:


    Hello,

    I'm trying to build a small program that outputs info to a small SPI tft
    display connected to a RPI device, but I can't find much info about that or
    where to start.
    I won't need any touch capability on that display for now, all I'd like
    would be to output some text and images.

    I'm using this display http://www.adafruit.com/products/2441 But I'll be
    able to use others if needed.

    The preferred way would be doing this using Go + QML but not strict?

    Ideas and different approaches are welcome.

    best regards,
    Alex
    --
    You received this message because you are subscribed to the Google Groups "golang-nuts" group.
    To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
    For more options, visit https://groups.google.com/d/optout.
  • Gerald Stanje at Jun 12, 2015 at 3:19 pm
    did you check the following links?
    - https://github.com/golang/go/wiki/GoArm
    - https://xivilization.net/~marek/blog/2015/05/04/go-1-dot-4-2-for-raspberry-pi/
    - https://groups.google.com/forum/#!topic/go-qml/cPKSEuIsLes
    On Friday, June 12, 2015 at 2:34:31 PM UTC+2, [email protected] wrote:


    Hello,

    I'm trying to build a small program that outputs info to a small SPI tft
    display connected to a RPI device, but I can't find much info about that or
    where to start.
    I won't need any touch capability on that display for now, all I'd like
    would be to output some text and images.

    I'm using this display http://www.adafruit.com/products/2441 But I'll be
    able to use others if needed.

    The preferred way would be doing this using Go + QML but not strict?

    Ideas and different approaches are welcome.

    best regards,
    Alex
    --
    You received this message because you are subscribed to the Google Groups "golang-nuts" group.
    To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
    For more options, visit https://groups.google.com/d/optout.
  • Alexdias at Jun 12, 2015 at 3:42 pm
    Thank you, it looks like QT will be a headache.
    Will do some research about OpenVG API but it doesn't look that good. I'd
    much prefer OpenGL or QT/QML as they would allow better looking interfaces
    and probably faster to render at the tft.

    sexta-feira, 12 de Junho de 2015 às 16:19:54 UTC+1, [email protected]
    escreveu:
    did you check the following links?
    - https://github.com/golang/go/wiki/GoArm
    -
    https://xivilization.net/~marek/blog/2015/05/04/go-1-dot-4-2-for-raspberry-pi/
    - https://groups.google.com/forum/#!topic/go-qml/cPKSEuIsLes
    On Friday, June 12, 2015 at 2:34:31 PM UTC+2, [email protected] wrote:


    Hello,

    I'm trying to build a small program that outputs info to a small SPI tft
    display connected to a RPI device, but I can't find much info about that or
    where to start.
    I won't need any touch capability on that display for now, all I'd like
    would be to output some text and images.

    I'm using this display http://www.adafruit.com/products/2441 But I'll be
    able to use others if needed.

    The preferred way would be doing this using Go + QML but not strict?

    Ideas and different approaches are welcome.

    best regards,
    Alex
    --
    You received this message because you are subscribed to the Google Groups "golang-nuts" group.
    To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
    For more options, visit https://groups.google.com/d/optout.
  • Gerald Stanje at Jun 12, 2015 at 3:49 pm
    go qml is just a wrapper to qml...

    qml examples:
    https://www.raspberrypi.org/qml-particles-demo-videos/
    On Friday, June 12, 2015 at 5:42:27 PM UTC+2, [email protected] wrote:

    Thank you, it looks like QT will be a headache.
    Will do some research about OpenVG API but it doesn't look that good. I'd
    much prefer OpenGL or QT/QML as they would allow better looking interfaces
    and probably faster to render at the tft.

    sexta-feira, 12 de Junho de 2015 às 16:19:54 UTC+1, [email protected]
    escreveu:
    did you check the following links?
    - https://github.com/golang/go/wiki/GoArm
    -
    https://xivilization.net/~marek/blog/2015/05/04/go-1-dot-4-2-for-raspberry-pi/
    - https://groups.google.com/forum/#!topic/go-qml/cPKSEuIsLes
    On Friday, June 12, 2015 at 2:34:31 PM UTC+2, [email protected] wrote:


    Hello,

    I'm trying to build a small program that outputs info to a small SPI tft
    display connected to a RPI device, but I can't find much info about that or
    where to start.
    I won't need any touch capability on that display for now, all I'd like
    would be to output some text and images.

    I'm using this display http://www.adafruit.com/products/2441 But I'll
    be able to use others if needed.

    The preferred way would be doing this using Go + QML but not strict?

    Ideas and different approaches are welcome.

    best regards,
    Alex
    --
    You received this message because you are subscribed to the Google Groups "golang-nuts" group.
    To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
    For more options, visit https://groups.google.com/d/optout.
  • Alexandre Dias at Jun 12, 2015 at 6:22 pm
    The only reason I'd prefer qml is just because in a near future I might be
    interested in using the touch sense function of the tft. Also, qml seems to
    be a lot easier to use and most likely will allow others to customize the
    GUI in a easy way.
    On Fri, Jun 12, 2015 at 4:49 PM, wrote:

    go qml is just a wrapper to qml...

    qml examples:
    https://www.raspberrypi.org/qml-particles-demo-videos/
    On Friday, June 12, 2015 at 5:42:27 PM UTC+2, [email protected] wrote:

    Thank you, it looks like QT will be a headache.
    Will do some research about OpenVG API but it doesn't look that good. I'd
    much prefer OpenGL or QT/QML as they would allow better looking interfaces
    and probably faster to render at the tft.

    sexta-feira, 12 de Junho de 2015 às 16:19:54 UTC+1, [email protected]
    escreveu:
    did you check the following links?
    - https://github.com/golang/go/wiki/GoArm
    -
    https://xivilization.net/~marek/blog/2015/05/04/go-1-dot-4-2-for-raspberry-pi/
    - https://groups.google.com/forum/#!topic/go-qml/cPKSEuIsLes
    On Friday, June 12, 2015 at 2:34:31 PM UTC+2, [email protected] wrote:


    Hello,

    I'm trying to build a small program that outputs info to a small SPI
    tft display connected to a RPI device, but I can't find much info about
    that or where to start.
    I won't need any touch capability on that display for now, all I'd like
    would be to output some text and images.

    I'm using this display http://www.adafruit.com/products/2441 But I'll
    be able to use others if needed.

    The preferred way would be doing this using Go + QML but not strict?

    Ideas and different approaches are welcome.

    best regards,
    Alex
    --
    You received this message because you are subscribed to the Google Groups "golang-nuts" group.
    To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
    For more options, visit https://groups.google.com/d/optout.
  • Gerald Stanje at Jun 12, 2015 at 3:20 pm
    + https://www.raspberrypi.org/forums/viewtopic.php?f=34&t=107978
    On Friday, June 12, 2015 at 2:34:31 PM UTC+2, [email protected] wrote:


    Hello,

    I'm trying to build a small program that outputs info to a small SPI tft
    display connected to a RPI device, but I can't find much info about that or
    where to start.
    I won't need any touch capability on that display for now, all I'd like
    would be to output some text and images.

    I'm using this display http://www.adafruit.com/products/2441 But I'll be
    able to use others if needed.

    The preferred way would be doing this using Go + QML but not strict?

    Ideas and different approaches are welcome.

    best regards,
    Alex
    --
    You received this message because you are subscribed to the Google Groups "golang-nuts" group.
    To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
    For more options, visit https://groups.google.com/d/optout.

Related Discussions

Discussion Navigation
viewthread | post
Discussion Overview
groupgolang-nuts @
categoriesgo
postedJun 12, '15 at 12:34p
activeJun 12, '15 at 6:22p
posts7
users3
websitegolang.org

People

Translate

site design / logo © 2023 Grokbase