Giter VIP home page Giter VIP logo

wopr's Issues

buy kit wopr

Good evening,
do you have any wopr kits for sale at the moment.
Sincerely.

kit available

Good evening,
Is the kit available again?
What type of pico was he with?
Sincerely.

ESPFlash_Mod.h is missing SPIFFS.h

Just tried to verify/build the code in the Arduino IDE (1.8.13, win10). There was some libraries missing, and I installed them, but I continue to get this missing file, and cannot find an equivalent in the Manage Libraries interface:

In file included from C:\Users\quann\Downloads\wopr-master\WOPR_Display\WOPR_Display.ino:27:0:
ESPFlash_Mod.h:25:10: fatal error: SPIFFS.h: No such file or directory
#include "SPIFFS.h"
^~~~~~~~~~
compilation terminated.
exit status 1
SPIFFS.h: No such file or directory

Lockup when selecting RANDOM after one or more runs.

When I select MENU -> RANDOM the WOPR locks up.

I think this is due to an array that is not re-initialized for each randomisation. In my forked code (converted to PlatformIO)
I did the following. Not sure if this is the same in your released code

void RandomiseSolveOrder()
{
  // bws 20200929 reset code_solve array back to initial state
  for ( uint8_t i = 0; i<12; i++)
    code_solve_order_random[i] = 99;

  for ( uint8_t i = 0; i < 12; i++ )
  {
    uint8_t ind = random(0, 12);
    while ( code_solve_order_random[ind] < 99 ) {
      ind = random(0, 12);
    }

    code_solve_order_random[ind] = i;
  }
}

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.