Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/navideck/romo-ios-sdk

Romo SDK supporting up to iOS 17!
https://github.com/navideck/romo-ios-sdk

ios objective-c robotics romo

Last synced: 2 months ago
JSON representation

Romo SDK supporting up to iOS 17!

Awesome Lists containing this project

README

        

# Romo iOS SDK
become a patron




Platform: iOS 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17

Romo SDK gives you the power to write your own software for Romo robots. After downloading the SDK, this guide will help you get rolling so you can start developing apps for Romo.

This project is a continuation of the *Romo SDK*, an attempt to breathe life into the lovable but sadly discontinued, iPhone robot, **Romo**. The goal is to enable a community of makers, tutors and researchers that is actively engaged with the Romo platform and smartphone robotics.

The SDK is broken up into 3 major frameworks, so you can pick and choose what you'd like to use in your app. The list of current frameworks is:

#### RMCore
Control Romo's hardware using your own apps! Using **RMCore**, you can drive all three motors, flash LEDs, and access state information about your Romo base.

#### RMCharacter
**RMCharacter** allows you to add Romo's adorable personality to your app. Want Romo to get excited when someone tweets your username? Now he can!

#### RMVision
**RMVision** allows you to use the iPhone's camera to allow Romo to see but also understand the world using computer vision.

## Setting up a project
You have multiple options:
### Using CocoaPods
The most easy way to include the Romo SDK in your app is using CocoaPods:
```ruby
pod 'Romo'
```

Note that this will get you only `RMCore`.

If you additionally need `RMCharacter` add
```ruby
pod 'Romo/RMCharacter'
```
Make sure to **comment out** `use_frameworks!` as you will face missing assets otherwise.
You will also need to add

```install! 'cocoapods', :disable_input_output_paths => true```
on top of your Podfile.

If you additionally need `RMVision` add
```ruby
pod 'Romo/RMVision'
```

A complete `PodFile` with all frameworks would look like this:

```ruby
# Uncomment the next line to define a global platform for your project
platform :ios, '6.0'
install! 'cocoapods', :disable_input_output_paths => true

target 'My Cool Romo App' do
# Comment the next line if you don't want to use dynamic frameworks
# use_frameworks!

# Pods for My Cool Romo App
pod 'Romo'
pod 'Romo/RMCharacter'
pod 'Romo/RMVision'

end
```

### Carthage
Although not tested yet, the basic folder structure for Carthage is in place so it should theoretically already be working.

### Manually
- You can drag and drop the files from the framework you want inside your own project. All source files are under `Classes` and optionally there might be an additional `Assets` folder like in the case of `RMCharacter`

#### Enable the Accessory

*Note: Only if you're using RMCore to interface with the robot.*

1. Navigate to your app's Info.plist file in XCode, which should be in the Supporting Files folder by default.

2. Click on the top row ("Information Property List") and add a new entry by clicking the plus button.

3. XCode will now ask you to input the key for this new entry. Use `Supported external accessory protocols`. Expand the newly created element, and change the value for "Item 0" to be `com.romotive.romo`.

4. That's it! Save the file and you're all set to have your app talk to the hardware accessory.

## Getting started
Now that we have a project that uses the Romo SDK, it's time to start writing some code!

#### If you're using RMCore with ObjC, you'll want to do the following...

1. Import the RMCore framework
```Objc
#import
```

2. Implement the RMCoreDelegate interface
```Objc
@interface YourVC : UIViewController
```

3. Add a property for the robot, with the protocols you'd like to use (here we're specifying that our robot can tilt its head, drive, and use an LED)
```Objc
@property (nonatomic, strong) RMCoreRobot *robot;
```

4. Initialize your delegacy to the robot (often in viewDidLoad).
```Objc
[RMCore setDelegate:self];
```

5. Implement a connection delegate (triggered when a robot is connected).
```Objc
- (void)robotDidConnect:(nonnull RMCoreRobot *)robot
{
// Currently the only kind of robot is Romo3, so this is just future-proofing
if (robot.isDrivable && robot.isHeadTiltable && robot.isLEDEquipped) {
self.robot = (RMCoreRobot *) robot;
}
}
```

6. Implement disconnection delegate (triggered when a robot is disconnected).
```Objc
- (void)robotDidDisconnect:(nonnull RMCoreRobot *)robot
{
if (robot == self.robot) {
self.robot = nil;
}
}
```

Now you're ready to send the robot commands. Here are some examples:

- Tell the LED to blink every 1 second (where the LED will be on 40% of every second).
```Objc
[self.robot.LEDs blinkWithPeriod:1.0 dutyCycle:.4];
```
- Tell the base to tilt the phone to a specific angle in degrees (here, it's 110).
```Objc
[self.robot tiltToAngle:110 completion:^(BOOL success)
{
if (success) {
NSLog(@"Successfully tilted");
} else {
NSLog(@"Couldn't tilt to the desired angle");
}
}];
```
- Tell the base to move forward at approximately 1 meter/second.
```Objc
[self.robot driveWithRadius:RM_DRIVE_RADIUS_STRAIGHT speed:1.0];
```
- Tell the robot to turn 90 degrees counter-clockwise.
```Objc
[self.robot turnByAngle:90.0
withRadius:RM_DRIVE_RADIUS_TURN_IN_PLACE
completion:^(float heading) {
NSLog(@"Finished! Ended up at heading: %f", heading);
}
];
```

- Tell all motors to stop.
```Objc
[self.robot stopAllMotion];
```

- Allow the robot to be connected when app goes in background.
```Objc
[RMCore allowBackground:YES];
```

In your app's Info.plist add a new key with the text `Required background modes` and select the `App communicates with an accessory` value for the first item.

### If you're using RMCore with Swift, you'll want to do the following...

1. Import the RMCore framework
```Swift
import Romo
```

In case you don't use CocoaPods you need to import the RMCore framework manually using a bridging header file `MyCoolRomoApp-Bridging-Header.h` with:
```Objc
#import
```

2. Implement the RMCoreDelegate protocol
```Swift
class ViewController: UIViewController, RMCoreDelegate {
```

3. Add a property for the robot, with the protocols you'd like to use (here we're specifying that our robot can tilt its head, drive, and use an LED)
```Swift
var robot: RMCoreRobotRomo3?
```

4. Initialize your delegacy to the robot (often in viewDidLoad).
```Swift
RMCore.setDelegate(self)
```

5. Implement a connection delegate (triggered when a robot is connected).
```Swift
func robotDidConnect(_ robot: RMCoreRobot)
{
// Currently the only kind of robot is Romo3, so this is just future-proofing
if robot.isDrivable && robot.isHeadTiltable && robot.isLEDEquipped {
self.robot = robot as? RMCoreRobotRomo3
}
}
```
6. Implement disconnection delegate (triggered when a robot is disconnected).
```Swift
func robotDidDisconnect(_ robot: RMCoreRobot) {
print("Disconnected")
if robot == self.robot {
self.robot = nil
}
}
```

Now you're ready to send the robot commands. Here are some examples:

- Tell the LED to blink every 1 second (where the LED will be on 40% of every second).
```Swift
robot?.leds.blink(withPeriod: 1.0, dutyCycle: 0.4)
```

- Tell the base to tilt the phone to a specific angle in degrees (here, it's 110).
```Swift
robot?.tilt(toAngle: 110, completion: { success in
if (success) {
print("Successfully tilted")
} else {
print("Couldn't tilt to the desired angle")
}
})
```
- Tell the base to move forward at approximately 1 meter/second.
```Swift
let RM_DRIVE_RADIUS_STRAIGHT: Float = 9999
robot?.drive(withRadius: RM_DRIVE_RADIUS_STRAIGHT, speed: 1.0)
```

- Tell the robot to turn 90 degrees counter-clockwise.
```Swift
let RM_DRIVE_RADIUS_TURN_IN_PLACE: Float = 9999
robot?.turn(byAngle: 90.0, withRadius: RM_DRIVE_RADIUS_TURN_IN_PLACE, completion: { (success, heading) in
print("Finished! Ended up at heading: %f", heading)
})
```
- Tell all motors to stop.
```Swift
robot?.stopAllMotion()
```
- Allow the robot to stay connected when the app goes to background.
```Swift
RMCore.allowBackground(true)
```

In your app's Info.plist add a new key with the text `Required background modes` and select the `App communicates with an accessory` value for the first item.

#### For using RMCharacter with ObjC, a good start would be...

1. Add a property for the character
```Objc
@property (nonatomic, strong) RMCharacter *romo;
```
2. Initialize your character (often in viewDidLoad).
```Objc
- (void)viewDidLoad
{
[super viewDidLoad];

// Grab a shared instance of the Romo character
self.romo = [RMCharacter Romo];
}
```
3. Add the character to a superview (often in viewWillAppear).
```Objc
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];

// Add Romo's face to self.view whenever the view will appear
[self.romo addToSuperview:self.view];
}
```
4. Ensure you remove the character's view when you're done with it (often in viewDidDisappear).
```Objc
- (void)viewDidDisappear:(BOOL)animated
{
[super viewDidDisappear:animated];

// Removing Romo from the superview stops animations and sounds
[self.romo removeFromSuperview];
}
```
Now you're ready to send the character commands. You can do things like:

- Tell Romo to change his facial expression
```Objc
self.romo.expression = RMCharacterExpressionCurious;
```
- Tell Romo to change his emotion
```Objc
self.romo.emotion = RMCharacterEmotionScared;
```
- Tell Romo to look up and to the left:
```Objc
[self.romo lookAtPoint:RMPoint3DMake(-1.0, -1.0, 0.5)
animated:YES];
```
## Sample Projects / Examples
We've written a few sample applications to get you started using the Romotive SDK. Each framework has an `Examples` subfolder with one or more example projects. Some project you will find are:

### HelloRMCore
Control your Romo's hardware through driving its motors and LEDs.

This simple application presents three buttons on the screen when the iDevice is docked on a robot. Two of these buttons tilt the robot's head up and down when tapped. The third button tells the robot to drive in a circle and blink its LED.

### HelloRMCoreSwift
Same as HelloRMCore but in Swift

### HelloRMCharacter
Cycle through Romo's expressions and emotions, and see how he can look around.

To get started interfacing with an **RMCharacter** object, we show you how to get Romo's face to appear on your iDevice. Drag your finger on Romo's face to have him look around. When your finger leaves the screen, Romo will perform a random expression (a brief action) and transition into a random emotion (a persistent state).

### HelloRomo
Use both **RMCore** and **RMCharacter** to drive Romo around and make faces.

Swipe left or right on Romo's face, and he will start driving in a circle in the direction you swiped. When you poke Romo's face, he'll stop what he's doing. Finally, swipe up to change Romo's emotional state.

## Documentation
The documentation can be found in the "docs" folder that comes bundeled with the SDK.

## FAQ

### Is the Romo App on the App Store?
Find the *Romo* app on the [App Store](https://itunes.apple.com/us/app/romo/id1436292886)

### Is the Romo App open source?
Find the *Romo* app source code [here](https://github.com/Navideck/Romo)

### Is firmware source code available?
Find Romo's firmware source code [here](https://github.com/Navideck/Romo-Firmware)

### Where can I buy a Romo robot?
There seems to be plenty of stock in online stores.

### Which Romo works with the SDK?
Any Romo with either 30pin or lightning port. This includes Romo models 3A, 3B, 3L.

### Which iPhone works with Romo?
iPhone 3GS and above. iPhone SE (1st gen) & iPhone 12 mini fit like a glove. iPhone 6, 7 and 8 need some squeezing but fit just fine. iPhone X and iPhone 12 (non mini) are too big.

### Which iOS versions are compatible with the SDK?
The latest SDK works from **iOS 6.0** up to **iOS 17**!

### How did this come to be?
Romotive, the company behind Romo, after shutting down were kind enough to open source their code stating:
*"We've decided to completely open-source every last bit of Romo's smarts. All of our projects live in this repo and you're free to use them however you like."*

Issues and pull requests are always welcome!

## Patrons
* Miraenda
* Suschman
* Matt Duston
* Jim Felich
* Felix

Support us by becoming a patron!

become a patron