2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

sakura.ioからのデータをiOSアプリで受け取る

Last updated at Posted at 2019-09-21

#やりたいこと
sakura.ioからのデータをiOSアプリで受信する。これさえできればArduinoとiOSアプリをネットを介して自由に通信できる。やったね。

私はこんな感じに使った。
https://qiita.com/LilyMameoka/items/3c4f04a48faaab8f7fda

#コード

AppDelegate.swift
import UIKit

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?


    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        // Override point for customization after application launch.
        return true
    }

    func applicationWillResignActive(_ application: UIApplication) {
        // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
        // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
    }

    func applicationDidEnterBackground(_ application: UIApplication) {
        // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
        // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
    }

    func applicationWillEnterForeground(_ application: UIApplication) {
        // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
    }

    func applicationDidBecomeActive(_ application: UIApplication) {
        // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
    }

    func applicationWillTerminate(_ application: UIApplication) {
        // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
    }


}
ViewController.swift
import UIKit
import Starscream

class ViewController: UIViewController {
    
    //UI
    var getData: UIButton!
    
    //WebSocket
    var socket: WebSocket?
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
    }
    
    override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(animated)

        createGetDataButton()

    }
    
}
getDataFunction.swift
import Starscream

extension ViewController : WebSocketDelegate {
    
    @objc func getData_TouchUpInside(_ sender: UIButton) {
        webSocketGetData()
    }
    
    func createGetDataButton() {
        getData = UIButton(frame: CGRect(x: 0, y: 40, width: 200, height: 70))
        getData.backgroundColor = .white
        getData.setTitle("GetData!", for: .normal)
        getData.setTitleColor(UIColor(red: 64/255, green: 192/255, blue: 240/255, alpha: 1), for: .normal)
        getData.addTarget(self, action: #selector(getData_TouchUpInside), for: .touchUpInside)
        self.view.addSubview(getData)
        self.view.bringSubviewToFront(getData)
    }
    
    func webSocketGetData() {
        self.socket = WebSocket(url: NSURL(string: "wss://api.sakura.ioから始まるURL(sakura.ioコントロールパネルで確認して)")! as URL)
        self.socket?.delegate = self
        self.socket?.connect()
    }
    
    func websocketDidConnect(socket: WebSocketClient) {
        print("did connect")
    }
    
    func websocketDidDisconnect(socket: WebSocketClient, error: Error?) {
        
    }
    
    func websocketDidReceiveMessage(socket: WebSocketClient, text: String) {
        print("message:", text)
        //データが入ってくると"message:"に続いてデータがデバッグエリアに出てくる
    }
    
    func websocketDidReceiveData(socket: WebSocketClient, data: Data) {
        print("data:", data)
    }
}
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?