Skip to content

Commit bb66ce8

Browse files
author
Chris Wilson
committed
fixes spelling error and adds some shameless marketing to README.md
1 parent 197665b commit bb66ce8

File tree

5 files changed

+79
-59
lines changed

5 files changed

+79
-59
lines changed

README.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,29 @@ This project is for connecting to the CloudBit made By [LittleBits](http://littl
66

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

9-
### LittleBit API for Mac and iOS
109

11-
#### Prerequisites
12-
1. Have a littleBits account to associate your cloudBit to; [Create account](https://littlebits.cc/signup).
10+
## Other projects
11+
__If you like this project be sure to check out__:
12+
13+
* On screen design tool [pXRay](https://itunes.apple.com/us/app/pxray/id950409092?mt=12)
14+
* Advanced Android log viewer [LogRabbit](https://itunes.apple.com/us/app/pxray/id950409092?mt=12)
15+
* CoreData [viewer](https://github.com/yepher/CoreDataUtility)
16+
17+
## LittleBit API for Mac and iOS
18+
19+
### Prerequisites
20+
1. Must have a littleBits account to associate your CloudBit to: [Create account](https://littlebits.cc/signup).
1321
2. Get `ACCESS_TOKEN` and `CLOUDBIT_ID` from [Cloud Control](control.littlebitscloud.cc)
1422

15-
#### References
23+
### References
1624

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

23-
#### Project Layout
31+
### Project Layout
2432

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

33-
#### Next Steps
41+
### Next Steps
3442

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

3745

38-
### Mac App
46+
## Mac App
3947

4048
To use the Mac App:
4149
* Launch app
@@ -48,10 +56,12 @@ To use the Mac App:
4856

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

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

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

55-
### iOS App
65+
## iOS App
5666

5767
TODO

design/robot_arm.pcvd

14 KB
Binary file not shown.

mac/LittleBits/LittleBits/views/YFRRobotArmView.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ - (instancetype)initWithCoder:(NSCoder *)coder
2424
- (void)drawRect:(NSRect)dirtyRect {
2525
[super drawRect:dirtyRect];
2626

27-
[YFRStyleKit drawRobtarmWithAngle:_angle];
27+
[YFRStyleKit drawRobotArmViewWithAngle:_angle];
2828
}
2929

3030
@end

mac/LittleBits/LittleBits/views/generated/YFRStyleKit.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
@interface YFRStyleKit : NSObject
1616

1717
// Drawing Methods
18-
+ (void)drawRobtarmWithAngle: (CGFloat)angle;
18+
+ (void)drawRobotArmViewWithAngle: (CGFloat)angle;
1919
+ (void)drawPressureGuageWithAngle: (CGFloat)angle;
2020
+ (void)drawO21NumberBit;
2121

0 commit comments

Comments
 (0)