Advertisement
greluc

Untitled

Jul 18th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.37 KB | None | 0 0
  1. package de.greluc.trådfri.core
  2.  
  3. /**
  4.  * This file is used to test some functionalities of the library.
  5.  *
  6.  * @author Lucas Greuloch (greluc)
  7.  * @version 1.0.0-SNAPSHOT 13.07.2017
  8.  */
  9.  
  10. fun main(args: Array<String>) {
  11.     println("Test started")
  12.  
  13.     val gateway = Gateway("1", "vs0.inf.ethz.ch")
  14.     val psk = "sesame"
  15.  
  16.     val client = SecureClient(gateway, psk)
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement