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

run arduboy.fillRect error #62

Open
piaoxuebingfeng opened this issue Sep 4, 2020 · 0 comments
Open

run arduboy.fillRect error #62

piaoxuebingfeng opened this issue Sep 4, 2020 · 0 comments

Comments

@piaoxuebingfeng
Copy link

run code at release V0.7.8 error

when i create a project,i write code :

#include <Arduboy2.h>

Arduboy2 arduboy;


void setup() {
  arduboy.begin();

  // default 60 and it saves us battery life
  arduboy.setFrameRate(15);
}

void loop() {
  if (!(arduboy.nextFrame()))
    return;

  arduboy.clear();
  arduboy.setCursor(4, 9);

  arduboy.print(F("Hello, world!"));
  arduboy.fillRect(10, 10, 4, 4, WHITE);
  arduboy.display();
}

i got some errors

TypeError:Cannot set property 'title' of underfined.
how can i solve the problem.

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

No branches or pull requests

1 participant