Tag: video

  • Playing YouTube Videos In iOS Device

      Playing a YouTube video in the app is very easy with UIWebView Here is a snippet // YouTube video  @IBOutlet weak var webView: UIWebView!     // MARK: – Embed Video Player // id is like: xjr89789234 (grab this from youtube url)     func loadYoutube(_ videoID:String) {         guard    …

  • Using Real 1 Bit Boolean Variable For Arduino Memory Efficiency

    Using Real 1 Bit Boolean Variable For Arduino Memory Efficiency

    We love Arduino we want to make some fancy project  but in this beautiful playground we have some limitations.  32K Programming memory is quite enough but 2K SRAM is becoming insufficient  when we use  lot of variable, especially if we don’t use the variables in efficient way. For example; if the variable will have a value between 0 and 255 ve use…