Skip to content

MeKaNiZm98/Friend

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Friend: Open-Source AI Wearable with 24h+ on single charge

Assembled Disassembled
CleanShot 2024-03-06 at 17 19 58 drawing

Discord Follow   License: GPLv3

Friend is an AI wearable device that records everything you say, gives you proactive feedback and advice.

Features

  • Real-Time AI Audio Processing: Leverage powerful on-device AI capabilities for real-time audio analysis.
  • Low-powered Bluetooth: Capture audio for 24h+ on a small button battery
  • Open-Source Software: Access and contribute to the pin's software stack, designed with openness and community collaboration in mind.
  • Wearable Design: Experience unparalleled convenience with ergonomic and lightweight design, perfect for everyday wear.

How it works

graph TD
A[Device] -- Streams Audio --> B[Phone App]
B -- Saves Audio --> C[Phone Storage]
C -- After X mins --> D[Send Audio to Whisper API]
D -- Returns Transcript --> B[Phone App]
B -- Saves Transcript --> F[Phone Storage]

style A fill:#FFFFFF, stroke:#FF4136, stroke-width:2px, color:#FFFFFF
style B fill:#FFFFFF, stroke:#1ABC9C, stroke-width:2px, color:#FFFFFF
style C fill:#FFFFFF, stroke:#FFCC00, stroke-width:2px, color:#1F2020
style D fill:#FFFFFF, stroke:#2ECC40, stroke-width:2px, color:#1F2020
style F fill:#FFFFFF, stroke:#FF6B6B, stroke-width:2px, color:#FFFFFF

linkStyle 0 stroke:#FF4136, stroke-width:2px
linkStyle 1 stroke:#1ABC9C, stroke-width:2px
linkStyle 2 stroke:#FFCC00, stroke-width:2px
linkStyle 3 stroke:#2ECC40, stroke-width:2px
linkStyle 4 stroke:#FF6B6B, stroke-width:2px
Loading

Structure

There are 2 different apps in these repositories located in different branches and folders. Our goal is to merge them into one big project.

  • Standalone Branch or Folder "AppStandalone": Standalone version of the app that doesn't require any hardware to use it.

  • AppWithWearable Branch or Folder "AppWithWearable": Wearable-connected version of the app that requires the "Friend necklace" to use it.

  • [Main Branch] Branch that contains firmware, hardware, designs and both apps

Hardware Buying Guide (<$20 total)

Getting Started

Follow these steps to get started with your Friend. Note, we tested everything on a mac + iphone. Currently trying to make it work for Android

Install the app

  1. Clone the repo git clone https://github.com/BasedHardware/friend.git

  2. Choose which version of the app you want to install (see Structure).

    • Don't have the device? run cd AppStandalone in terminal
    • Have the device/NRF Board? run cd AppWithWearable in terminal
  3. Install Flutter and CocoaPods

  4. Install your environment variables

    • For AppWithWearable, open file api_calls.dart located in AppWithWearable/lib/backend/api_requests Find "Whisper" and instead of "key", provide your own api-key for openai whisper for transcriptions to work

    CleanShot 2024-03-25 at 21 58 42

    • For AppStandalone, update variables in in .env.template file
  5. iOS: Install XCode then navigate to the iOS folder. You might need to launch Xcode to select a team and specify a bundle identifier. Android: Download/install android Studio then navigate to the Android folder Don't run in web/simulator: Bluetooth will not work

  6. Run flutter clean then flutter pub get then pod install

  7. When everything is installed, run flutter run , this should run your app on a selected device

No-Code Alternative:

Install Firmware

  1. Download Arduino

  2. Run cd src/BluetoothDeviceDriver in your home repository and Open Arduino .ino file, go to "Settings" and paste these 2 links in additional Boards Manager URLs

    https://adafruit.github.io/arduino-board-index/package_adafruit_index.json
    https://files.seeedstudio.com/arduino/package_seeeduino_boards_index.json
    

    IMAGE 2024-03-24 19:44:35

  3. Go to Boards Manager and download these 2 Boards

    IMAGE 2024-03-24 19:46:49

  4. Connect NRF52840 board via USB cable to your computer

  5. Go to Tools > Board > IMAGE 2024-03-24 19:50:42 and select "Seeed nRF52 mbed-enabled Boards (you need board that has Sense)

    Also select Port (should be something that contains USB...) IMAGE 2024-03-24 19:55:07

  6. Go to Sketch => Include Library => Add .zip library and upload a library which you should download from here, make sure you download the Seeed_Arduino_Mic repository itself as a .zip file and not use the .zip from its releases section.

  7. Install Arduino BLE and Seeed Arduino LSM6DS3 libraries which can be found in Arduino's menu

  8. Click "Upload" and then open Serial Monitor to see logs

Testing Audio Recording on Your Computer

Follow these steps to test audio recording on your computer using a Python script:

  1. Open your terminal and navigate to your home directory.

  2. Change to the "src" folder:

    cd src
    
  3. Install the required Python modules:

    pip install -r requirements.txt
    
  4. Run the Python script:

    python local_laptop_client.py
    

    This script will list the available audio devices and their corresponding IDs.

  5. Copy the ID of the desired audio device.

  6. Open the local_laptop_client.py file in a text editor and locate the following line:

    DEVICE_ID = "564A72F4-4552-8CE8-719D-8D5CB2E5D43D"

    Replace "564A72F4-4552-8CE8-719D-8D5CB2E5D43D" with the ID you copied in step 5.

  7. Save the changes to the local_laptop_client.py file.

  8. Run the script again:

    python local_laptop_client.py
    

    or

    python3 local_laptop_client.py
    
  9. You can now control the audio recording:

    • Double-tap the device to start recording.
    • Double-tap the device again to stop recording.

The recorded audio files will be stored periodically in the src/recordings directory.

That's it! You have now set up and tested audio recording on your computer.

Assemble the device

Step 0: Make sure you have bought everything from the buying guide above

Step 1: You need to design the case using 3D printer. Find .stl file here. If you don't know how to do it, send this file to someone who has a 3d printer

Step 2: Solder everything together like on the picture below. using a soldering kit. Don't have it? buy this one for $9

CleanShot 2024-03-28 at 17 01 53

Step 3: Fit everything in the case. Biggest hole is for the usb port. In my example, I put the battery first, then the board and then the switch, however it's not an ideal design. If you will figure out a better solution, please contribute!

Step 4: Use hot glue to attach the lid to the case. You can also use a scotch tape first for testing purposes. Last, on the USB-port side, you'll find 2 small round holes. This is where the thread should go through.

Congratulations! you now have a fully working and assembled device!

Contributing

Join our Discord! We welcome contributions from the community! If you're interested in improving Friend, our current biggest goal is to combine both apps together (AppStandalone with AppWithWearable).

  • Standalone App brings great prompts and rich structure
  • AppWithWearable brings simple bluetooth connecting functionality

Support

For open-source support, please open an issue on GitHub and/or ask in our Discord Community. For commercial support, license inquiries, or any other questions, please contact us directly at [email protected].

Disclaimer

Please note that the Friend is a prototype project and is provided "as is", without warranty of any kind. Use of the device should comply with all local laws and regulations concerning privacy and data protection.

Thank you for your interest in Friend, the open-source AI wearable. We're excited to see what you'll build with it!

Licensing

Friend is available under dual licensing options:

  1. GNU General Public License (GPL): For open-source projects and community development, Friend is available under the GPL. This strong copyleft license ensures that all modifications and derived works are also open-source, fostering a collaborative development environment.

  2. Commercial License: For individuals or entities wishing to use Friend in closed-source projects or who require more flexible licensing terms than those offered by the GPL, a commercial license is available. The commercial license permits private modification, use, and distribution, as well as commercial support and warranty.

Choosing Your License

  • If you wish to contribute to or use Friend in open-source projects, you are free to do so under the terms of the GPL, as detailed in the LICENSE file.
  • If you require a commercial license for your project or enterprise, please contact us at [email protected] to discuss your needs and obtain licensing information.

About

AI wearable with 24h+ battery

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 96.3%
  • JavaScript 1.9%
  • C++ 0.4%
  • Swift 0.4%
  • HTML 0.4%
  • Ruby 0.3%
  • Other 0.3%