Giter VIP home page Giter VIP logo

m5stack-sd-updater's Introduction

License: MIT Build Status Gitter

M5Stack-SD-Updater


Click to enlarge


ABOUT


๐Ÿญ PREREQUISITES:


Micro SD Card (TF Card) - formatted using FAT32. Max size 32 Gb.


Make sure you have the following libraries: - they should be installed in: ....\Documents\Arduino\libraries


If your version of M5Stack is (0.1.7) or major you are set and can move on.


If your version of M5Stack is 0.1.6 or minor, you need to install this additional library:


๐Ÿฑ UNPACKING

For your own lazyness, you can use @micutil's awesome M5Burner and skip the next steps.

https://github.com/micutil/M5Burner_Mic/releases

... or customize your own menu and make the installation manually :

1) Open both sketches from the "examples/M5Stack-SD-Update" menu.


2) Download the SD-Content ๐Ÿ’พ folder from the release page and unzip it into the root of the SD Card. Then put the SD Card into the M5Stack. This zip file comes preloaded with precompiled apps and the relative meta information for the menu.


3) Compile the "M5Stack-SD-Menu.ino" example.
This sketch is the menu app. It must be (a) compiled and saved to the root directory of a micro SD card for persistence and (b) flashed onto the M5Stack.

(a) In the Arduino IDE, go to Sketch / Export compiled binary , and compile the file. Rename the file "menu.bin" and copy it to the micro SD card. (b) Next, flash "menu.bin" to the M5Stack.

Note that you won't need to (a) copy it if you previously extracted the SD-Content folder on the SD card.


4) Make sketches compatible with the SD-Updater Menu .

The brief bit of code in the "M5Stack-SDLoader-Snippet.ino" sketch can be used to make any Arduino compatible sketch compatible for use with the SD-Updater menu.

For an existing M5 app, find the line:

  #include <M5Stack.h>

And add this:

  #include "M5StackUpdater.h"

In your setup() function, find the following statements:

  M5.begin();
  Wire.begin();

And add this after 'Wire.begin();':

  if(digitalRead(BUTTON_A_PIN) == 0) {
    Serial.println("Will Load menu binary");
    updateFromFS(SD);
    ESP.restart();
  }

Export the compiled binary ( on the Arduino IDE menu go to: Sketch / Export Compiled Binary ).

(Optional) Rename the file to remove unnecessary additions to the name. The filename will be saved as "filename.ino.esp32.bin". Edit the name so it reads "filename.bin". This is purely for display purposes. The file will work without this change.

Use one of following methods to get the app on the M5Stack:

  • Manually copy it to the sd card

  • Existing installations (menu.bin already copied and loaded on the M5Stack): clear the content of the examples/M5Stack-SD-Menu/data folder, copy the compiled binary there and use the ESP32 Sketch Data Uploader utility (available from the Tools menu in the Arduino IDE).


๐Ÿ“š USAGE:

When an app is loaded in memory, booting the M5Stack with the BTN_A pushed will flash back the menu.bin into memory.

When the menu is loaded in memory, it will list all available apps on the sdcard and load them on demand.

Booting the M5Stack with the BTN_A pushed will power it off.

The ESP32 Sketch Data Uploader can be used to send .bin, jpg, json, mod and mp3 files onto the M5Stack. The menu.bin will take care of dumping them on the SD Card.

Some artwork/credits can be added for every uploaded binary, the menu will scan for these file types:

  • .bin compiled application binary

  • .jpg image/icon (max 200x100)

  • .json file with dimensions descriptions:

{"width":128,"height":128,"authorName":"tobozo","projectURL":"http://short.url","credits":"** http://very.very.long.url ~~"}

If no info is provided, it will be pulled from the app's repository public information.


โš ๏ธ The jpg/json file names must match the bin file name, case matters! jpg/json files are optional but must both be set if provided. The value for "credits" JSON property will be scrolled on the top of the screen while the value for projectURL JSON property will be rendered as a QR Code in the info window. It is better provide a short URL for projectURL so the resulting QR Code has more error correction.



๐Ÿšซ LIMITATIONS:

  • SD Library limits file names (including path) to 32 chars, M5StackSAM has a slightly higher limit.
  • FAT specifications prevent having more than 512 files on the SD Card, but this menu is limited to 256 Items anyway.
  • Long file names will eventually get covered by the jpg image, better stay under 8 chars (not including the extension).

๐Ÿ”˜ OPTIONAL:

The default binary name to be loaded can be changed at compilation time by customizing the MENU_BIN constant:

#define MENU_BIN "/my_custom_menu.bin"
#include "M5StackUpdater.h"

The M5Stack automatically detects and uses the M5Stack-Faces addon (gameboy only).

The JoyPSP Controls for M5Stack SD Menu necessary code is now disabled in the menu example but the code stays here and can be used as a boilerplate for any other two-wires input device.

The JoyPSP code is optimized for a 4 Wires PSP JoyPad breakout on Pins 35 and 36, but it shouldn't be a problem to adapt/extend to other analog joystick models.


โš ๏ธ KNOWN ISSUES

qrcode.h not found, or duplicate declarations errors can occur during compilation of M5Stack-SD-Menu.ino.

Reason: M5Stack recently embedded the qrcode.h library into their own core. If your version of M5stack core is older than 0.1.8, Arduino IDE will probably complain.

Solution 1: choose between one of the two includes in M5Stack-SD-Menu.ino:

#include "qrcode.h" โ† use this with M5Stack-Core 0.1.6 and older, comment out the other one

or

#include "utilities/qrcode.h โ† use this with M5Stack-Core 0.1.7, comment out the other one

Solution 2: in your library manager, downgrade the M5Stack-SD-Menu to an earlier version (0.0.1) until you update M5Stack library

Solution 3: upgrade your M5Stack core version to 0.1.8

Compilation #pragma warnings/errors in the Arduino IDE can be solved by setting the debug level to default in the Arduino preferences window. See #3

vMicro: currently can't compile at all, see #5. Looking for a solution that works with both vMicro and Arduino IDE.


๐Ÿ›ฃ ROADMAP:

Not defined yet, but looking at how fast this library landed in platform.io, there's a possibility it will soon exist in different flavours (i.e. as an ESP-IDF component) or with more features. Contributors welcome!


#๏ธโƒฃ REFERENCES:


๐ŸŽฌ Video demonstration https://youtu.be/myQfeYxyc3o
๐ŸŽฌ Video demo of Pacman + sound Source
๐ŸŽฌ Video demo of NyanCat Source
๐ŸŽ“ Macsbug's article on M5Stack SD-Updater ๐Ÿ‡ฏ๐Ÿ‡ต ๐Ÿ‡ฌ๐Ÿ‡ง (google translate)

๐Ÿ™ CREDITS:


๐Ÿ‘ M5Stack M5Stack https://github.com/m5stack/M5Stack
๐Ÿ‘ M5StackSam Tom Such https://github.com/tomsuch/M5StackSAM
๐Ÿ‘ ArduinoJSON Benoรฎt Blanchon https://github.com/bblanchon/ArduinoJson/
๐Ÿ‘ QRCode Richard Moore https://github.com/ricmoo/qrcode
๐Ÿ‘ @Reaper7 Reaper7 https://github.com/reaper7
๐Ÿ‘ @PartsandCircuits PartsandCircuits https://github.com/PartsandCircuits
๐Ÿ‘ @lovyan03 ใ‚‰ใณใ‚„ใ‚“ https://github.com/lovyan03

m5stack-sd-updater's People

Contributors

partsandcircuits avatar reaper7 avatar tobozo avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.