Code Monkey home page Code Monkey logo

Comments (4)

stuppert avatar stuppert commented on August 15, 2024

I have the same issue. I think there is a typo at line 443 and 412:

I managed to run the code by changing "uitn16_t" in line 443 to "uint16_t" and deleting the ? in line 412.
Also delete the "?" at line 412.

from eloquentsurveillance.

Rob58329 avatar Rob58329 commented on August 15, 2024

Also I needed to change line "motion.h:418" from
"uint32_t offset = j * W;"
to
"uint32_t offset = j * (getWidth()/8);"

from eloquentsurveillance.

Patriboom avatar Patriboom commented on August 15, 2024

Thanks all of you, your corrections work.
Digest of those three corrections in src/Motion.h file goes like that:

Line 412
for (uint16_t y = _location.y > blockSize / 2 ; y < _location.y + blockSize; y += blockSize / 2) {

Line 418
uint32_t offset = j * (getWidth()/8);

Line 443
void forEachBlock(Callback callback, Reducer& reducer, uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t size) {


File WifiHelper.h
Line 58
return String(ip[0] + '.' + ip[1] + '.' + ip[2] + '.' + ip[3])

from eloquentsurveillance.

marketviable avatar marketviable commented on August 15, 2024

Fix available pull request #14

from eloquentsurveillance.

Related Issues (13)

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.