home.social

#beagleboard — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #beagleboard, aggregated by home.social.

  1. Worked out a handy way to deploy software to a PocketBeagle SBC today.

    The USB port enumerates a CDC-ACM serial interface (console) and a CDC-Ethernet port, however by default, there's no route to the Internet. To connect it to the Internet, you must set your machine up as a router, and make it use your host as a default route.

    Alternatively, you direct things to use a HTTP proxy. Like this:

    proxypy.readthedocs.io/en/late

    ```
    log.info("Sending deployment script")
    os.system(
    "scp deploy.sh [email protected]:/tmp"
    )

    # Send the deployment script over via SSH
    with proxy.Proxy(port=0) as p:
    log.info("Running deployment script")
    os.system(
    "ssh -R 8080:localhost:%d [email protected] bash -ex /tmp/deploy.sh" % p.flags.port
    )
    ```

    In the top of `deploy.sh`:

    ```
    # Never sure whether things use upper or lower case here
    export HTTP_PROXY="http://localhost:8080/"
    export http_proxy="http://localhost:8080/"
    export HTTPS_PROXY="http://localhost:8080/"
    export https_proxy="http://localhost:8080/"
    ```

    (Some applications use upper case, others use lower case.)

    Now `apt-get`, `git` and friends, can pull files over HTTP/HTTPS via your proxy.

    The same technique would work with the Raspberry Pi Zero family.

    #Python #Proxy #BeagleBoard #RaspberryPi

  2. Worked out a handy way to deploy software to a PocketBeagle SBC today.

    The USB port enumerates a CDC-ACM serial interface (console) and a CDC-Ethernet port, however by default, there's no route to the Internet. To connect it to the Internet, you must set your machine up as a router, and make it use your host as a default route.

    Alternatively, you direct things to use a HTTP proxy. Like this:

    proxypy.readthedocs.io/en/late

    ```
    log.info("Sending deployment script")
    os.system(
    "scp deploy.sh [email protected]:/tmp"
    )

    # Send the deployment script over via SSH
    with proxy.Proxy(port=0) as p:
    log.info("Running deployment script")
    os.system(
    "ssh -R 8080:localhost:%d [email protected] bash -ex /tmp/deploy.sh" % p.flags.port
    )
    ```

    In the top of `deploy.sh`:

    ```
    # Never sure whether things use upper or lower case here
    export HTTP_PROXY="http://localhost:8080/"
    export http_proxy="http://localhost:8080/"
    export HTTPS_PROXY="http://localhost:8080/"
    export https_proxy="http://localhost:8080/"
    ```

    (Some applications use upper case, others use lower case.)

    Now `apt-get`, `git` and friends, can pull files over HTTP/HTTPS via your proxy.

    The same technique would work with the Raspberry Pi Zero family.

    #Python #Proxy #BeagleBoard #RaspberryPi

  3. Worked out a handy way to deploy software to a PocketBeagle SBC today.

    The USB port enumerates a CDC-ACM serial interface (console) and a CDC-Ethernet port, however by default, there's no route to the Internet. To connect it to the Internet, you must set your machine up as a router, and make it use your host as a default route.

    Alternatively, you direct things to use a HTTP proxy. Like this:

    proxypy.readthedocs.io/en/late

    ```
    log.info("Sending deployment script")
    os.system(
    "scp deploy.sh [email protected]:/tmp"
    )

    # Send the deployment script over via SSH
    with proxy.Proxy(port=0) as p:
    log.info("Running deployment script")
    os.system(
    "ssh -R 8080:localhost:%d [email protected] bash -ex /tmp/deploy.sh" % p.flags.port
    )
    ```

    In the top of `deploy.sh`:

    ```
    # Never sure whether things use upper or lower case here
    export HTTP_PROXY="http://localhost:8080/"
    export http_proxy="http://localhost:8080/"
    export HTTPS_PROXY="http://localhost:8080/"
    export https_proxy="http://localhost:8080/"
    ```

    (Some applications use upper case, others use lower case.)

    Now `apt-get`, `git` and friends, can pull files over HTTP/HTTPS via your proxy.

    The same technique would work with the Raspberry Pi Zero family.

    #Python #Proxy #BeagleBoard #RaspberryPi

  4. Worked out a handy way to deploy software to a PocketBeagle SBC today.

    The USB port enumerates a CDC-ACM serial interface (console) and a CDC-Ethernet port, however by default, there's no route to the Internet. To connect it to the Internet, you must set your machine up as a router, and make it use your host as a default route.

    Alternatively, you direct things to use a HTTP proxy. Like this:

    proxypy.readthedocs.io/en/late

    ```
    log.info("Sending deployment script")
    os.system(
    "scp deploy.sh [email protected]:/tmp"
    )

    # Send the deployment script over via SSH
    with proxy.Proxy(port=0) as p:
    log.info("Running deployment script")
    os.system(
    "ssh -R 8080:localhost:%d [email protected] bash -ex /tmp/deploy.sh" % p.flags.port
    )
    ```

    In the top of `deploy.sh`:

    ```
    # Never sure whether things use upper or lower case here
    export HTTP_PROXY="http://localhost:8080/"
    export http_proxy="http://localhost:8080/"
    export HTTPS_PROXY="http://localhost:8080/"
    export https_proxy="http://localhost:8080/"
    ```

    (Some applications use upper case, others use lower case.)

    Now `apt-get`, `git` and friends, can pull files over HTTP/HTTPS via your proxy.

    The same technique would work with the Raspberry Pi Zero family.

    #Python #Proxy #BeagleBoard #RaspberryPi

  5. Worked out a handy way to deploy software to a PocketBeagle SBC today.

    The USB port enumerates a CDC-ACM serial interface (console) and a CDC-Ethernet port, however by default, there's no route to the Internet. To connect it to the Internet, you must set your machine up as a router, and make it use your host as a default route.

    Alternatively, you direct things to use a HTTP proxy. Like this:

    proxypy.readthedocs.io/en/late

    ```
    log.info("Sending deployment script")
    os.system(
    "scp deploy.sh [email protected]:/tmp"
    )

    # Send the deployment script over via SSH
    with proxy.Proxy(port=0) as p:
    log.info("Running deployment script")
    os.system(
    "ssh -R 8080:localhost:%d [email protected] bash -ex /tmp/deploy.sh" % p.flags.port
    )
    ```

    In the top of `deploy.sh`:

    ```
    # Never sure whether things use upper or lower case here
    export HTTP_PROXY="http://localhost:8080/"
    export http_proxy="http://localhost:8080/"
    export HTTPS_PROXY="http://localhost:8080/"
    export https_proxy="http://localhost:8080/"
    ```

    (Some applications use upper case, others use lower case.)

    Now `apt-get`, `git` and friends, can pull files over HTTP/HTTPS via your proxy.

    The same technique would work with the Raspberry Pi Zero family.

    #Python #Proxy #BeagleBoard #RaspberryPi

  6. … like many of you, I’m curious about this (and the sentence I quoted is directly from the linked page). The only solution is for the #Beagleboard folks to send me a badge so I can fully research it 😉

  7. … like many of you, I’m curious about this (and the sentence I quoted is directly from the linked page). The only solution is for the #Beagleboard folks to send me a badge so I can fully research it 😉

  8. … like many of you, I’m curious about this (and the sentence I quoted is directly from the linked page). The only solution is for the #Beagleboard folks to send me a badge so I can fully research it 😉

  9. … like many of you, I’m curious about this (and the sentence I quoted is directly from the linked page). The only solution is for the #Beagleboard folks to send me a badge so I can fully research it 😉

  10. … like many of you, I’m curious about this (and the sentence I quoted is directly from the linked page). The only solution is for the #Beagleboard folks to send me a badge so I can fully research it 😉

  11. BeagleBadge is a $99 is an open source wearable with an ePaper display, sensors, and wireless radios

    The BeagleBadge is a new ePaper display that’s designed to be worn like the paper badges you’d wear at a conference.

    But with a 4.2 inch ePaper display, a dual-core Arm Cortex-A53 processor, support for WiFi 6, Bluetooth 5.4, LoRa, and a variety of sensors and buttons, it can do a lot more than show your name and title to other folks. It’s available for pre-order now for $99.

    Since the […]

    #beaglebadge #beagleboard #beagleboardOrg #epaper #openHardware #wearables Read more: liliputing.com/beaglebadge-is-
  12. BeagleBadge is a $99 is an open source wearable with an ePaper display, sensors, and wireless radios

    The BeagleBadge is a new ePaper display that’s designed to be worn like the paper badges you’d wear at a conference.

    But with a 4.2 inch ePaper display, a dual-core Arm Cortex-A53 processor, support for WiFi 6, Bluetooth 5.4, LoRa, and a variety of sensors and buttons, it can do a lot more than show your name and title to other folks. It’s available for pre-order now for $99.

    Since the […]

    #beaglebadge #beagleboard #beagleboardOrg #epaper #openHardware #wearables Read more: liliputing.com/beaglebadge-is-
  13. BeagleBadge is a $99 is an open source wearable with an ePaper display, sensors, and wireless radios

    The BeagleBadge is a new ePaper display that’s designed to be worn like the paper badges you’d wear at a conference.

    But with a 4.2 inch ePaper display, a dual-core Arm Cortex-A53 processor, support for WiFi 6, Bluetooth 5.4, LoRa, and a variety of sensors and buttons, it can do a lot more than show your name and title to other folks. It’s available for pre-order now for $99.

    Since the […]

    #beaglebadge #beagleboard #beagleboardOrg #epaper #openHardware #wearables Read more: liliputing.com/beaglebadge-is-
  14. BeagleBadge is a $99 is an open source wearable with an ePaper display, sensors, and wireless radios

    The BeagleBadge is a new ePaper display that’s designed to be worn like the paper badges you’d wear at a conference.

    But with a 4.2 inch ePaper display, a dual-core Arm Cortex-A53 processor, support for WiFi 6, Bluetooth 5.4, LoRa, and a variety of sensors and buttons, it can do a lot more than show your name and title to other folks. It’s available for pre-order now for $99.

    Since the […]

    #beaglebadge #beagleboard #beagleboardOrg #epaper #openHardware #wearables Read more: liliputing.com/beaglebadge-is-
  15. #1m2labwidowmaker koodausvaiheessa.

    Rautapuolella kovasti tapahtunut sitten viime postauksen:

    - Rpi Zero 2W selkään wavesharen USB HUB hat, jossa USB-UART sovitin integroituna. Data liikkuu
    #beagley-scarlett ja #1m2labwidowmaker välillä USB-serial datana #DIY -protokollalla, jonka nimesin SATBUS -nimellä. Widowmakeriin on mahdollista USB:n kautta liittää satelliittipedaleja, jonka kautta sateliitit juttelevat widowmakerin kanssa, joka hoitaa puheen PiPedalin suuntaan. Widowmaker ottaa virtansa suoraan USB-B:n kautta scarletilta.

    Widowmakerin näytöllä näkyy valittu preset, jota voi ohjata rotaryllä tai pipedalin kautta.

    Pukkaan tästä repon, kun saan python -koodit jekkasemaan, vielä ois muutamia bugeja ratkottavana.

    #guitarpedal #pipedal #beagleboard

  16. #1m2labwidowmaker koodausvaiheessa.

    Rautapuolella kovasti tapahtunut sitten viime postauksen:

    - Rpi Zero 2W selkään wavesharen USB HUB hat, jossa USB-UART sovitin integroituna. Data liikkuu
    #beagley-scarlett ja #1m2labwidowmaker välillä USB-serial datana #DIY -protokollalla, jonka nimesin SATBUS -nimellä. Widowmakeriin on mahdollista USB:n kautta liittää satelliittipedaleja, jonka kautta sateliitit juttelevat widowmakerin kanssa, joka hoitaa puheen PiPedalin suuntaan. Widowmaker ottaa virtansa suoraan USB-B:n kautta scarletilta.

    Widowmakerin näytöllä näkyy valittu preset, jota voi ohjata rotaryllä tai pipedalin kautta.

    Pukkaan tästä repon, kun saan python -koodit jekkasemaan, vielä ois muutamia bugeja ratkottavana.

    #guitarpedal #pipedal #beagleboard

  17. #1m2labwidowmaker koodausvaiheessa.

    Rautapuolella kovasti tapahtunut sitten viime postauksen:

    - Rpi Zero 2W selkään wavesharen USB HUB hat, jossa USB-UART sovitin integroituna. Data liikkuu
    #beagley-scarlett ja #1m2labwidowmaker välillä USB-serial datana #DIY -protokollalla, jonka nimesin SATBUS -nimellä. Widowmakeriin on mahdollista USB:n kautta liittää satelliittipedaleja, jonka kautta sateliitit juttelevat widowmakerin kanssa, joka hoitaa puheen PiPedalin suuntaan. Widowmaker ottaa virtansa suoraan USB-B:n kautta scarletilta.

    Widowmakerin näytöllä näkyy valittu preset, jota voi ohjata rotaryllä tai pipedalin kautta.

    Pukkaan tästä repon, kun saan python -koodit jekkasemaan, vielä ois muutamia bugeja ratkottavana.

    #guitarpedal #pipedal #beagleboard

  18. I got #Java 25 running on the #RISCV #BeagleBoard BeagleV-Fire! After my initial struggles in a previous video, I succeeded in upgrading Ubuntu and installing Java!

    Step-by-step guide in this YouTube video:
    youtube.com/watch?v=p08u_g7hFwE

    And blog post:
    webtechie.be/post/2026-02-13-j

    #JavaOnRiscV #JavaOnSingleBoardComputers

  19. I got #Java 25 running on the #RISCV #BeagleBoard BeagleV-Fire! After my initial struggles in a previous video, I succeeded in upgrading Ubuntu and installing Java!

    Step-by-step guide in this YouTube video:
    youtube.com/watch?v=p08u_g7hFwE

    And blog post:
    webtechie.be/post/2026-02-13-j

    #JavaOnRiscV #JavaOnSingleBoardComputers

  20. I got #Java 25 running on the #RISCV #BeagleBoard BeagleV-Fire! After my initial struggles in a previous video, I succeeded in upgrading Ubuntu and installing Java!

    Step-by-step guide in this YouTube video:
    youtube.com/watch?v=p08u_g7hFwE

    And blog post:
    webtechie.be/post/2026-02-13-j

    #JavaOnRiscV #JavaOnSingleBoardComputers

  21. I got #Java 25 running on the #RISCV #BeagleBoard BeagleV-Fire! After my initial struggles in a previous video, I succeeded in upgrading Ubuntu and installing Java!

    Step-by-step guide in this YouTube video:
    youtube.com/watch?v=p08u_g7hFwE

    And blog post:
    webtechie.be/post/2026-02-13-j

    #JavaOnRiscV #JavaOnSingleBoardComputers

  22. I got #Java 25 running on the #RISCV #BeagleBoard BeagleV-Fire! After my initial struggles in a previous video, I succeeded in upgrading Ubuntu and installing Java!

    Step-by-step guide in this YouTube video:
    youtube.com/watch?v=p08u_g7hFwE

    And blog post:
    webtechie.be/post/2026-02-13-j

    #JavaOnRiscV #JavaOnSingleBoardComputers

  23. Here is the new #JavaFX #LinksOfTheWeek, published on jfx-central.com/links.

    Thanks to
    @dlemmermann
    #BeagleBoard
    Robin Tegg
    Artur Skowroński

    Happy reading, and have a lovely #Java weekend!

  24. Here is the new #JavaFX #LinksOfTheWeek, published on jfx-central.com/links.

    Thanks to
    @dlemmermann
    #BeagleBoard
    Robin Tegg
    Artur Skowroński

    Happy reading, and have a lovely #Java weekend!

  25. Here is the new #JavaFX #LinksOfTheWeek, published on jfx-central.com/links.

    Thanks to
    @dlemmermann
    #BeagleBoard
    Robin Tegg
    Artur Skowroński

    Happy reading, and have a lovely #Java weekend!

  26. Here is the new #JavaFX #LinksOfTheWeek, published on jfx-central.com/links.

    Thanks to
    @dlemmermann
    #BeagleBoard
    Robin Tegg
    Artur Skowroński

    Happy reading, and have a lovely #Java weekend!

  27. Here is the new #JavaFX #LinksOfTheWeek, published on jfx-central.com/links.

    Thanks to
    @dlemmermann
    #BeagleBoard
    Robin Tegg
    Artur Skowroński

    Happy reading, and have a lovely #Java weekend!

  28. Ah yes, because nothing screams cutting-edge like #debugging a 2008 #BeagleBoard with a USB sniffer. 😅🦖 Apparently, Downtown Doug Brown's idea of a wild weekend involves resurrecting obsolete #tech while the rest of us enjoy things invented in this decade. 🎉💾
    downtowndougbrown.com/2025/11/ #cuttingedge #nostalgia #USBsniffer #retrocomputing #HackerNews #ngated

  29. Ah yes, because nothing screams cutting-edge like #debugging a 2008 #BeagleBoard with a USB sniffer. 😅🦖 Apparently, Downtown Doug Brown's idea of a wild weekend involves resurrecting obsolete #tech while the rest of us enjoy things invented in this decade. 🎉💾
    downtowndougbrown.com/2025/11/ #cuttingedge #nostalgia #USBsniffer #retrocomputing #HackerNews #ngated

  30. Ah yes, because nothing screams cutting-edge like #debugging a 2008 #BeagleBoard with a USB sniffer. 😅🦖 Apparently, Downtown Doug Brown's idea of a wild weekend involves resurrecting obsolete #tech while the rest of us enjoy things invented in this decade. 🎉💾
    downtowndougbrown.com/2025/11/ #cuttingedge #nostalgia #USBsniffer #retrocomputing #HackerNews #ngated

  31. Ah yes, because nothing screams cutting-edge like #debugging a 2008 #BeagleBoard with a USB sniffer. 😅🦖 Apparently, Downtown Doug Brown's idea of a wild weekend involves resurrecting obsolete #tech while the rest of us enjoy things invented in this decade. 🎉💾
    downtowndougbrown.com/2025/11/ #cuttingedge #nostalgia #USBsniffer #retrocomputing #HackerNews #ngated