Skip to content

Commit

Permalink
Readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
JazzJackrabbit committed Jun 22, 2021
1 parent 830be08 commit 635269d
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 17 deletions.
8 changes: 4 additions & 4 deletions Eyewear Hub.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 1.2.1;
MARKETING_VERSION = 1.2.2;
PRODUCT_BUNDLE_IDENTIFIER = com.kirillragozin.eyewearhub;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -604,7 +604,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 1.2.1;
MARKETING_VERSION = 1.2.2;
PRODUCT_BUNDLE_IDENTIFIER = com.kirillragozin.eyewearhub;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -638,7 +638,7 @@
INFOPLIST_FILE = "Eyewear Hub/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 1.2.1;
MARKETING_VERSION = 1.2.2;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.kirillragozin.eyewearhub;
Expand Down Expand Up @@ -671,7 +671,7 @@
INFOPLIST_FILE = "Eyewear Hub/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 1.2.1;
MARKETING_VERSION = 1.2.2;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.kirillragozin.eyewearhub;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
6 changes: 3 additions & 3 deletions Eyewear Hub/Base.lproj/Main.storyboard
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="17701" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" initialViewController="B8D-0N-5wS">
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="18122" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" initialViewController="B8D-0N-5wS">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="17701"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="18122"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<scenes>
Expand Down Expand Up @@ -1714,7 +1714,7 @@
<subviews>
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="4ra-CT-gYS">
<rect key="frame" x="-2" y="-1" width="164" height="18"/>
<buttonCell key="cell" type="check" title="Steam Processed Data" bezelStyle="regularSquare" imagePosition="left" inset="2" id="vC1-tT-yuY">
<buttonCell key="cell" type="check" title="Steam Processed Data" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="vC1-tT-yuY">
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
Expand Down
2 changes: 1 addition & 1 deletion Eyewear Hub/Shared/SharedData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class SharedData: NSObject {

public var udpClient : UDPWrapper

public var streamProcessed : Bool = false
public var streamProcessed : Bool = true
public var includeBlink : Bool = false
public var blinkDetected: Int = 0

Expand Down
2 changes: 2 additions & 0 deletions Eyewear Hub/Tab Controllers/RawDataViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ class RawDataViewController: NSViewController {

streamProcessedDataCheckbox.cell?.state = NSControl.StateValue.fromBool(sharedData.streamProcessed)

streamProcessedTriggered(self);

_ = Timer.scheduledTimer(timeInterval: updateFrequency,
target: self,
selector: #selector(self.ticker),
Expand Down
27 changes: 18 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
# Smart Eyewear Hub
# Eyewear Hub

This repository contains the MacOS utility that connects to a J!NS MEME Academic device, reads live data from it and streams it to localhost via UDP.
A MacOS utility that allows connecting to a J!NS MEME Academic device, reading raw live data from it and streaming it via UDP.

Any other application that relies on the data from J!NS MEME can be launched in parallel and read that data via UDP client. Current stream format is a string containing raw Integer numbers: **AccX,AccY,AccZ,Roll,Pitch,Yaw,Right,Left**
### Download

## Plugins
[Get latest version 📥 ]( https://github.com/JazzJackrabbit/EyewearHub/releases/download/boar/Eyewear.Hub.zip )

Output format is a string with comma-separated numeric values:

*AccX, AccY, AccZ, Roll, Pitch, Yaw, Left, Right* (default)

*AccX, AccY, AccZ, Roll, Pitch, Yaw, **Vv**, **Vh*** (processed data)

### Contribute

This project uses CocoaPods.
Install external plugins before building the project.

This project uses CocoaPods. Install external plugins before building the project.
```
git clone [email protected]:JazzJackrabbit/EyewearHub.git
cd EyewearHub
pod install
open Eyewear\ Hub.xcworkspace
```

## Contact

If you have any questions, please contact Kirill at [email protected]

0 comments on commit 635269d

Please sign in to comment.