Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Work with M5StickC #59

Open
meganetaaan opened this issue Jun 11, 2019 · 3 comments
Open

Work with M5StickC #59

meganetaaan opened this issue Jun 11, 2019 · 3 comments
Labels
enhancement New feature or request

Comments

@meganetaaan
Copy link
Owner

No description provided.

@meganetaaan meganetaaan added the enhancement New feature or request label Jun 11, 2019
@ltaoist
Copy link

ltaoist commented Dec 18, 2022

Any news?

@mongonta0716
Copy link
Sponsor Collaborator

M5Stack-Avatar is M5Unified as of v0.8.0 and will work if you adjust the scale and position. The following source is for M5StickCPlus.

#include <M5Unified.h>
#include <Avatar.h>

using namespace m5avatar;

Avatar avatar;

void setup()
{
  M5.begin();
  M5.Lcd.setRotation(3);
  avatar.setScale(0.6);
  avatar.setPosition(0, 20);
  avatar.init(); // start drawing
}

void loop()
{
  // avatar's face updates in another thread
  // so no need to loop-by-loop rendering
}

@ltaoist
Copy link

ltaoist commented Dec 18, 2022

Vvvvv!

Thanks I will run it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants