Adds firebase auth

This commit is contained in:
Patrick McDonagh
2018-06-01 13:36:16 -05:00
parent b1b80113c7
commit 80f2241604
221 changed files with 38134 additions and 3697 deletions

View File

@@ -0,0 +1,27 @@
//
// ChannelHistoryCell.swift
// pocloud
//
// Created by Patrick McDonagh on 5/25/18.
// Copyright © 2018 patrickjmcd. All rights reserved.
//
import UIKit
class ChannelHistoryCell: UITableViewCell {
@IBOutlet weak var timestampLabel: UILabel!
@IBOutlet weak var valueLabel: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}

View File

@@ -0,0 +1,29 @@
//
// DeviceDetailChannelCell.swift
// pocloud
//
// Created by Patrick McDonagh on 5/24/18.
// Copyright © 2018 patrickjmcd. All rights reserved.
//
import UIKit
class DeviceDetailChannelCell: UITableViewCell {
@IBOutlet weak var channelNameLabel: UILabel!
@IBOutlet weak var channelValueLabel: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}

View File

@@ -0,0 +1,27 @@
//
// MapDetailDeviceCell.swift
// pocloud
//
// Created by Patrick McDonagh on 5/25/18.
// Copyright © 2018 patrickjmcd. All rights reserved.
//
import UIKit
class MapDetailDeviceCell: UITableViewCell {
@IBOutlet weak var deviceTypeLogo: UIImageView!
@IBOutlet weak var deviceTypeLabel: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}