Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/upsidedownlabs/Chords-Web i…
Browse files Browse the repository at this point in the history
…nto filters
  • Loading branch information
Amanmahe committed Nov 27, 2024
2 parents d18337f + ba8f0cb commit 1b24fd5
Show file tree
Hide file tree
Showing 7 changed files with 112 additions and 8 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions public/assets/dark/Webserialdark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions public/assets/dark/indexDBdark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions public/assets/light/indexDBlight.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions public/assets/light/serialdevicelight.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions src/components/LandingComp/TechStack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ const Stack = () => {
name: "Web Serial API",
logo:
theme === "light"
? "./assets/dark/favicon.ico"
: "./assets/light/favicon.ico",
? "./assets/dark/Webserialdark.svg"
: "./assets/light/serialdevicelight.svg",
url: "https://developer.mozilla.org/en-US/docs/Web/API/Web_Serial_API",
description: "For connecting to the serial port of the device.",
},
{
name: "IndexedDB API",
logo:
theme === "light"
? "./assets/dark/favicon.ico"
: "./assets/light/favicon.ico",
? "./assets/dark/indexDBdark.svg"
: "./assets/light/indexDBlight.svg",
url: "https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API",
description: "IndexedDB is a low-level API for client-side storage.",
},
Expand Down Expand Up @@ -124,4 +124,4 @@ const Stack = () => {
);
};

export default Stack;
export default Stack;
10 changes: 10 additions & 0 deletions src/components/filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@
//
// Note:
// filter_gen.py provides C/C++ type functions which we have converted to TS
// TypeScript filter classes for Chords
// Made with <3 at Upside Down labs
// Author: Aman Maheshwari
//
// Reference:
// https://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.butter.html
// https://courses.ideate.cmu.edu/16-223/f2020/Arduino/FilterDemos/filter_gen.py
//
// Note:
// filter_gen.py provides C/C++ type functions which we have converted to TS

//Notch Filter 50Hz/60Hz
export class EXGFilter {
Expand Down

0 comments on commit 1b24fd5

Please sign in to comment.