Language - Objective C iOS Xcode: Difference between revisions

From Phidgets Support
(Created page with "Category:Language{{NoTitle}} {| |style="vertical-align:middle; width: 60%;"| <font size=6>'''Language - Objective C''' '''iOS with Xcode'''</font> Welcome to using Phidg...")
(No difference)

Revision as of 22:01, 21 November 2019

Language - Objective C

iOS with Xcode

Welcome to using Phidgets with Objective C! By using Objective C, you will have access to the complete Phidget22 API, including events.

Xcode is an IDE provided by Apple that can be used to develop code in a wide variety of programming languages, including Objective C.

Install Phidget Drivers for iOS

If you haven't already, please visit the iOS page before you continue reading. There you will be instructed on how to properly set up your development machine so you can follow the guides below!

Use Our Examples

One of the best ways to start programming with Phidgets is to use our example code as a guide. In order to run the examples for iOS you will need to download Xcode from the Mac App Store.


Now that you have Xcode installed, download and unpack the Phidget libraries for iOS development. You will need to reference these files from your Xcode project in order to use Phidgets. This step is covered in detail below.


Next, download the Objective-C example:


Unpack the Objective-C example and navigate to Phidget.xcodeproj. Open the file in Xcode:

Objectivec open.png


With Phidgets as your target, navigate to Build Settings and find the Header Search Paths setting:

Ios header.png


The header file phidget22.h was included in the Phidget iOS libraries download. Add a reference to the folder that contains phidget22.h under the Header Search Paths setting:

Ios header path.png


Next, find the Other Linker Flags setting:

Ios linker.png


Add a reference to the Phidget libraries that were included in the Phidget iOS libraries download:

Ios linker path.png


Now that the library files are linked, simply select the type of device you would like the application to run on and press play:

Ios simulator.png


The application will detect any servers that are currently online and have Phidgets connected. Here is an example output:

Ios PhidgetApp MainScreen.png


After confirming that the Phidgets Example is working, you can proceed to run the example for your specific device. Do this by selecting your server and then continue to navigate through the hierarchy until you reach your device. After tapping your device, the example will show automatically. Currently, we have example programs for the following classes:

  • DigitalInput
  • DigitalOutput
  • VoltageInput
  • VoltageRatioInput


Here is an example of what the VoltageInput example looks like:

Ios example run.png


You should now have the example up and running for your device. Play around with the device and experiment with some of the functionality. When you are ready, the next step is configuring your project and writing your own code!

Configure Your Project

Whether you are building a project from scratch, or adding Phidget functionality to an existing project, you will need to configure your development environment to properly link the Phidget library. To begin:


Create a new Xcode project:

Cocoa CreateProject.png


Select an iOS application. For this tutorial's purposes, we will use a Single View Application:

IOS SingleView.png


Name the project, select Objective-C as the language, and choose which devices will be supported:

IOS NameProject objc.png


Now that your project is created, you need to add references to the Phidget iOS libraries. This is covered in detail above in the use our examples section.

After you have linked the Phidget iOS libraries, simply add a reference to phidget22.h in your header file:

#import "phidget22.h"


Success! The project now has access to Phidgets and we are ready to begin coding.

Write Code

By following the instructions for your operating system and compiler above, you now have working examples and a project that is configured. This teaching section will help you understand how the examples were written so you can start writing your own code.


Remember: your main reference for writing Objective C code will be the Phidget22 API Manual and the example code.

(Refer the the C API when using Objective C)

Step One: Initialize and Open

You will need to declare your Phidget object in your code. For example, we can declare a digital input object like this:

PhidgetDigitalInput ch;


Next, the Phidget object needs to be initialized and opened.

PhidgetDigitalInput_create(&ch);
Phidget_open((PhidgetHandle)ch);


Although we are not including it on this page, you should handle the return values of all Phidget functions. Here is an example of the previous code with error handling:

PhidgetReturnCode res;
const char* errorString;

res = PhidgetDigitalInput_create(&ch);
if(res != EPHIDGET_OK){
  Phidget_getErrorDescription ( returnValue, &errorString );
  NSLog(@"Handle error here");
}

res = Phidget_open((PhidgetHandle)ch);
if(res != EPHIDGET_OK){
  Phidget_getErrorDescription ( returnValue, &errorString );
   NSLog(@"Handle error here");
}

Step Two: Wait for Attachment of the Phidget

Simply calling open does not guarantee you can use the Phidget immediately. To use a Phidget, it must be plugged in (attached). We can handle this by using event driven programming and tracking the attach events. Alternatively, we can modify our code so we wait for an attachment:

PhidgetDigitalInput_create(&ch);
Phidget_openWaitForAttachment(ch, 5000);

Waiting for attachment will block indefinitely until a connection is made, or until the timeout value is exceeded.


To use events to handle attachments, we have to modify our code slightly:

PhidgetDigitalInput_create(&ch);
Phidget_setOnAttachHandler((PhidgetHandle)ch,gotAttach,(__bridge void*)self);
Phidget_open((PhidgetHandle)ch);

Next, we have to declare the function that will be called when an attach event is fired - in this case the function gotAttach will be called:

static void gotAttach(PhidgetHandle phid, void *context){
    [(__bridge id)context performSelectorOnMainThread:@selector(deviceAttached)
                                           withObject:nil
                                        waitUntilDone:NO];
}

Step Three: Do Things with the Phidget

We recommend the use of event driven programming when working with Phidgets. In a similar way to handling an attach event as described above, we can also add an event handler for a state change event:

PhidgetDigitalInput_create(&ch);
Phidget_setOnAttachHandler((PhidgetHandle)ch,gotAttach,(__bridge void*)self);
PhidgetDigitalInput_setOnStateChangeHandler(ch, gotStateChange, (__bridge void*)self);
Phidget_open((PhidgetHandle)ch);

This code will connect a function and an event. In this case, the gotStateChange function will be called when there has been a change to the devices input. Next, we need to create the gotStateChange function.

void gotStateChange(PhidgetDigitalInputHandle phid, void *context, int state){
        [(__bridge id)context performSelectorOnMainThread:@selector(onStateChangeHandler:)
                                               withObject:[NSNumber numberWithInt:state]
                                            waitUntilDone:NO];
}

Above, the onStateChangeHandler method is invoked on the main thread. Event data is stored as an NSNumber.

The method onStateChangeHandler is defined as follows:

- (void)onStateChangeHandler:(NSNumber *)state{
    if(state.intValue)
        stateTextField.stringValue = @"True";
    else
        stateTextField.stringValue = @"False";
}


If events do not suit your needs, you can also poll the device directly for data using code like this:

int state;

PhidgetDigitalInput_getState(ch, &state);
stateTextField.stringValue = [NSString stringWithFormat:@"%@", state ? @"True" : @"False"];

Step Four: Close and Delete

At the end of your program, be sure to close and delete your device:

Phidget_close((PhidgetHandle)ch);
PhidgetDigitalInput_delete(&ch);

What's Next?

Now that you have set up Phidgets to work with your programming environment, we recommend you read our guide on Phidget Programming Basics to learn the fundamentals of programming with Phidgets.Next Arrow.png