Go to file
Akshay Narisetti d0bd86cd5b
Merge pull request #5 from BasedHardware/akshay-patch
Docs + Groq
2024-05-13 04:39:49 +05:30
assets feat: commit without keys 2024-05-12 11:51:27 -07:00
firmware Change Device Name to OpenGlass 2024-05-13 04:11:58 +05:30
prompts feat: commit without keys 2024-05-12 11:51:27 -07:00
public feat: commit without keys 2024-05-12 11:51:27 -07:00
sources Fix Groq 2024-05-13 04:37:19 +05:30
.gitignore feat: commit without keys 2024-05-12 11:51:27 -07:00
App.tsx feat: commit without keys 2024-05-12 11:51:27 -07:00
LICENSE feat: commit without keys 2024-05-12 11:51:27 -07:00
README.md Added structure to Docs 2024-05-13 04:38:44 +05:30
app.json feat: commit without keys 2024-05-12 11:51:27 -07:00
babel.config.js feat: commit without keys 2024-05-12 11:51:27 -07:00
package.json feat: commit without keys 2024-05-12 11:51:27 -07:00
tsconfig.json feat: commit without keys 2024-05-12 11:51:27 -07:00
yarn.lock feat: commit without keys 2024-05-12 11:51:27 -07:00

README.md

OpenGlass - Open Source Smart Glasses

Turn any glasses into hackable smart glasses with less than $25 of off-the-shelf components. Record your life, remember people you meet, identify objects, translate text, and more.

OpenGlass

Video Demo

OpenGlass Demo

Want a Pre-built Version?

We will ship a limited number of pre-built kits. Fill out the interest form to get notified.

Community

Join the Based Hardware Discord for setup questions, contribution guide, and more.

Getting Started

Follow these steps to set up OpenGlass:

Hardware

  1. Gather the required components:

  2. 3D print the glasses mount case using the provided STL file.

  3. Open the firmware folder and open the .ino file in the Arduino IDE.

    • If you don't have the Arduino IDE installed, download and install it from the official website.
  4. Follow the software preparation steps to set up the Arduino IDE for the XIAO ESP32S3 board:

    • Add ESP32 board package to your Arduino IDE:
      • Navigate to File > Preferences, and fill "Additional Boards Manager URLs" with the URL: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
      • Navigate to Tools > Board > Boards Manager..., type the keyword esp32 in the search box, select the latest version of esp32, and install it.
    • Select your board and port:
      • On top of the Arduino IDE, select the port (likely to be COM3 or higher).
      • Search for xiao in the development board on the left and select XIAO_ESP32S3.
  5. Upload the firmware to the XIAO ESP32S3 board.

Software

  1. Clone the OpenGlass repository and install the dependencies:

    git clone https://github.com/BasedHardware/openglass.git
    cd openglass
    npm install
    
  2. Add API keys for Groq and OpenAI in the keys.ts file located at https://github.com/BasedHardware/OpenGlass/blob/main/sources/keys.ts.

  3. For Ollama, self-host the REST API from the repository at https://github.com/ollama/ollama and add the URL to the keys.ts file.

  4. Start the application:

    npm start
    

    Note: This is an Expo project. For now, open the localhost link to access the web version.

License

This project is licensed under the MIT License.