GithubHelp home page GithubHelp logo

Comments (3)

lovyan03 avatar lovyan03 commented on September 26, 2024

Hello. @DAKarp
Please try this code. (Connect Unit Mini OLED to port A.)

#include <M5UnitMiniOLED.h>
#include <M5Unified.h>

void setup(void)
{
  M5.begin();
}

void loop(void)
{
  M5.Display.fillCircle
   ( rand()%M5.Display.width()
   , rand()%M5.Display.height()
   , 8, rand()
  );
}
IMG_9062.MOV

from m5unified.

DAKarp avatar DAKarp commented on September 26, 2024

Thanks so much! I got it working, and it turns out the issue was the order of imports!

This does not work:

#include <M5Unified.h>
#include <M5UnitMiniOLED.h>

and this does:

#include <M5UnitMiniOLED.h>
#include <M5Unified.h>

from m5unified.

lovyan03 avatar lovyan03 commented on September 26, 2024

Yes, that is the intended specification.
If you want M5Unified to control the external display, the header must be included before M5Unified.
If you want to control the external display yourself, the header must be included after M5Unified.

from m5unified.

Related Issues (20)

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.