Skip to content

Commit

Permalink
fixes spelling error and adds some shameless marketing to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Wilson committed Jan 3, 2015
1 parent 197665b commit bb66ce8
Show file tree
Hide file tree
Showing 5 changed files with 79 additions and 59 deletions.
26 changes: 18 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,29 @@ This project is for connecting to the CloudBit made By [LittleBits](http://littl

![http://littlebits.cc/](https://s3.amazonaws.com/media.littlebits.cc/images/littlebits-logo.svg)

### LittleBit API for Mac and iOS

#### Prerequisites
1. Have a littleBits account to associate your cloudBit to; [Create account](https://littlebits.cc/signup).
## Other projects
__If you like this project be sure to check out__:

* On screen design tool [pXRay](https://itunes.apple.com/us/app/pxray/id950409092?mt=12)
* Advanced Android log viewer [LogRabbit](https://itunes.apple.com/us/app/pxray/id950409092?mt=12)
* CoreData [viewer](https://github.com/yepher/CoreDataUtility)

## LittleBit API for Mac and iOS

### Prerequisites
1. Must have a littleBits account to associate your CloudBit to: [Create account](https://littlebits.cc/signup).
2. Get `ACCESS_TOKEN` and `CLOUDBIT_ID` from [Cloud Control](control.littlebitscloud.cc)

#### References
### References

* My API Notes [API Notes](https://github.com/yepher/littlebits/blob/master/CloudBit_ProtocolNotes.md)
* LittleBits API [Access API](http://developer.littlebitscloud.cc/access)
* LittleBits API [HTTP API](http://developer.littlebitscloud.cc/api-http)
* Littlebits API [API Examples](https://github.com/littlebits/cloud-api-lessons)
* Enable SSHD on CloudBit [CloudBit File System](https://github.com/yepher/littlebits/blob/master/CloubitFileSystem.md)

#### Project Layout
### Project Layout

* `common` - this is used by both Mac and iOS so it must not contain platform specific code
* `common/extern` - common external dependencies (better to use CocoaPods when possible)
Expand All @@ -30,12 +38,12 @@ This project is for connecting to the CloudBit made By [LittleBits](http://littl
* `ios` - all IOS project code, resources etc
* `mac` - all OSX project code, resources etc

#### Next Steps
### Next Steps

* Implement ability to configuring WiFi in cloud bit from Mac or iOS app


### Mac App
## Mac App

To use the Mac App:
* Launch app
Expand All @@ -48,10 +56,12 @@ To use the Mac App:

![Main Window](https://raw.githubusercontent.com/yepher/littlebits/master/design/screen/mainScreen.png)

YFRStyleKit::drawRobotArmWithAngle: (CGFloat)angle
![RobotArm](https://raw.githubusercontent.com/yepher/littlebits/master/design/screen/robotArm.png)

This is a work in progress
![Number Display](https://raw.githubusercontent.com/yepher/littlebits/master/design/screen/021Number.png)

### iOS App
## iOS App

TODO
Binary file modified design/robot_arm.pcvd
Binary file not shown.
2 changes: 1 addition & 1 deletion mac/LittleBits/LittleBits/views/YFRRobotArmView.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ - (instancetype)initWithCoder:(NSCoder *)coder
- (void)drawRect:(NSRect)dirtyRect {
[super drawRect:dirtyRect];

[YFRStyleKit drawRobtarmWithAngle:_angle];
[YFRStyleKit drawRobotArmViewWithAngle:_angle];
}

@end
2 changes: 1 addition & 1 deletion mac/LittleBits/LittleBits/views/generated/YFRStyleKit.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@interface YFRStyleKit : NSObject

// Drawing Methods
+ (void)drawRobtarmWithAngle: (CGFloat)angle;
+ (void)drawRobotArmViewWithAngle: (CGFloat)angle;
+ (void)drawPressureGuageWithAngle: (CGFloat)angle;
+ (void)drawO21NumberBit;

Expand Down
Loading

0 comments on commit bb66ce8

Please sign in to comment.