-
Notifications
You must be signed in to change notification settings - Fork 100
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
LP Wilson Pull Request #89
base: main
Are you sure you want to change the base?
Conversation
…key, but i don't know if it worked yet
… to be registered. then i got event handlers to be called (before, it wasn't being called
…uttons, it goes back to 60 degrees as a baseline.
…. then it increments up or down when i press the buttons. yay
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good job! This project is graded as yellow. Please see the comments below for more information.
const lat = 47.6038321; | ||
const lon = -122.330062; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One of the requirements for Wave 4 was to make two Axios calls and chain them. Rather than hard-coding the lat and lon for Seattle, we wanted you to be able to get this information from the proxy server and then send the information back to the proxy server to get the temperature. This makes the project a yellow.
console.log(downButton); | ||
}; | ||
|
||
registerEventHandlers(undefined); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rather than sending undefined
into the function, you could leave it blank and also have the registerEventHandlers function not take in any parameters.
LP's individual work (after group co-working part)