Difference between revisions of "Swagbadge2021 GettingStarted"

From Open Hardware Miniconf
Jump to: navigation, search
(Getting the device on your wifi - commandline with mpfshell)
(Getting the device on your wifi - wireless)
Line 31: Line 31:
  
 
* Start your badge by plugging it in.
 
* Start your badge by plugging it in.
* The screens on your badge will say <code>Entering AP mode: connect to me!</code>  
+
* The screens on your badge will say <code>Configure WiFi:</code>  
 
   [[File:configurewifi-1.png|300px]]
 
   [[File:configurewifi-1.png|300px]]
 
* Use your phone (or computer) to change wifi networks to use the badge. The badge wifi name starts with <code>aiko</code> followed by some numbers/letters.  
 
* Use your phone (or computer) to change wifi networks to use the badge. The badge wifi name starts with <code>aiko</code> followed by some numbers/letters.  

Revision as of 06:09, 20 January 2021

Getting started with the Swagbadge

Support

My package arrived in the mail, first steps.

  • Your package should contain your badge, and some other goodies!
    • Image showing the contents of the swagbag package
    • Badge
    • SAO headers (x 4)
    • SAO proto boards (x 2)
    • SAO tux board
    • Lanyard
    • Stickers
    • Instructions
  • Take off the protective cases to reveal the screens.
  • Powering it up
    • Insert a micro USB cable into the badge and connect the other end to a USB port on your computer or USB power source.
    • A green light should glow on the rear of the board, and a title appear across the two screens.
  • Turning it on and off again
    • Plugging/unplugging it is fine. Usually the badge isn't running anything intensely enough that just unpowering it would cause a problem.
  • On bootup, you should see:
    • The OLED screens will display "Aiko" and a version number as a title
    • It will also display something else to tell you to set up your wifi.

Getting it on your network

Getting the device on your wifi - wireless

The first time you boot your badge, it won't know how to talk to your wifi network, so it creates its own temporary wifi network for you to connect to, so you can configure it.

  • Start your badge by plugging it in.
  • The screens on your badge will say Configure WiFi:
  Configurewifi-1.png
  • Use your phone (or computer) to change wifi networks to use the badge. The badge wifi name starts with aiko followed by some numbers/letters.
  Configurewifi-2.png -> Configurewifi-3.png
  • Once you're connected to the badge wifi, open a web browser on that device to the IP address shown on the screens. Something like http://192.168.4.1
  Configurewifi-5.png
  • You'll be prompted to enter your wifi SSID and wifi password. Note: Your device can only use a 2.4GHz network: it is not compatible with 5GHz WiFi.
  • The badge will restart using the credentials you've provided and it will shut down its wifi access point.
  Configurewifi-4.png
  • Your phone/computer will go back to using its usual wifi network and badge is now online!

Note: If you are using an Android device to link the badge to your WiFi, it will pop up a dialog to say you are switching to a network that doesn't have Internet access and ask if you want to switch back. Select "Keep" to stay on the badge's temporary access point.

Getting the device on your wifi - commandline with mpfshell

If the above guide to setting up via the wifi AP (access point) doesn't work, you can put a configuration file onto the badge. You'll need a Python environment to do so, which you'll need anyway if you plan on writing your own badge software applications.

  • Start by getting a copy of the aiko firmware, and installing mpfshell
  • Note: Your device can only talk to a 2.4GHz network: it is not compatible with 5GHz.
  • Edit aiko_engine_mp/configuration/net.py and insert the details of your SSID and password.
  • use mpfshell: mpfshell -o COM3 (substitute the com port/tty of your badge)
  • put configuration/net.py configuration/net.py
  • fire up repl to view the console log
  • You can now restart your device
  • On bootup it should now talk to your network and you can see it on the console log.

Your badge will display its connection status on the screens.

Running pre-installed applications

Aiko's minimal Swagbadge application

At the moment the badge by default a basic "Swagbadge" application within the Aiko framework. This application

  • has a thread to keep wifi running,
  • has a thread to stay connected to (our Australian, private) mqtt server
  • has a thread to display a rotating header across the two oleds.

You can now talk to your badge using MQTT messages.

Running other applications

At the moment, "swagbadge" is the only application that's for use with the badge.

There are other applications in the repo which are for other places the Aiko framework has been used.

If you've written an application of your own and want to run that by default on badge startup,

  1. edit your local copy of configuration/main.py and change the value of the "application" to point to your new application.
  2. using mpfshell, 'put' configuration/main.py and applications/your_application.py onto the badge
  3. Restart the badge

Running example code

There is example code which has a number of examples in it, including a snake game and a demo of how to use various badge functions.

  1. From your commandline on your computer, use mpfshell to put whatever example code you want onto the badge.
  2. To run example code, you can use the "emergency stop" function to halt any other applications and put you in the repl.
    1. Touch both of the bottom spots on the sliders
    2. Reboot the badge
  3. Now at the repl prompt, type (replace the name of the module as appropriate for the code you want to run):

Use examples.game_snake as example:

from examples.game_snake import run
run()

Use ctrl-c to halt operation and return to the repl prompt.

Hardware pinout

You can get the schematic and pin mapping on this page: https://github.com/CCHS-Melbourne/Swag-Badge/blob/master/swag-badge-schematic.pdf

- GPIO0 : left breakout pin4
- GPIO2 : left breakout pin3

- GPIO4 : SCL (shared across all SAO connectors and the screens)
- GPIO5 : SDA (shared across all SAO connectors and the screens)
- GPIO12/15: slider #1
- GPIO13: left breakout pin3
- GPIO14/27: slider #2
- GPIO16: left switch  (under screen #1)
- GPIO17: right switch (under screen #2)

- GPIO18: SAO3 pin3 + LB pin7
- GPIO23: SAO3 pin4

- GPIO19: SAO1 pin4
- GPIO22: SAO1 pin3 (also onboard blue LED in the back)

- GPIO21: unused but not wired on this chip

- GPIO25: SAO4 pin4 + RB pin6
- GPIO26: SAO4 pin3 + RB pin7

- GPIO27: free (pin available on the chip, not routed anywhere)

- GPIO32: SAO2 pin3 + RB pin4 (touch pin, can be used with SAO tux foot or nose touchpad) 
- GPIO33: SAO2 pin4 + RB pin5 (touch pin, can be used with SAO tux foot or nose touchpad)

- GPIO34: right breakout pin2 (input only)
- GPIO35: right breakout pin3 (input only)

- GPIO36: unused but not wired on this chip (input only)
- GPIO39: unused but not wired on this chip (input only)

Extensions: Adding a SAO

  • provided by others
  • build your own (linky here to our docs)

Extensions: Updating the software framework

Between when we ship the board and when it arrives, there might be some changes to the software framework (Aiko). Here's how to update it. Or perhaps you're interested in writing your own applications?