Tumgik
#DIGITALVS
driradroach · 5 years
Photo
Tumblr media
#Repost @love_happens_shortfilm with @get_repost ・・・ NOW AVAILABLE!! I am pleased to announce that my first short film, "Love Happens" is now available for you to experience!! Love Happens is a love story about two people who met online and had an encounter that changed them forever! The executive producer is Tanesa Kassa and it was written and directed by Tee Tunnell-Harris (Yours truly) Starring Church Stars award winning actor Calvin TheExecutive Cannon Jr, Sterling Calhoun Jordon Campbell Lynnette Clement and Jasmine Jett! Watch it on Facebook or you can click the Youtube link and help us get amazing views and likes! Special thanks to our crew Lavar KG (cinematographer) Jammal Jamaal Wilkerson (Editor) https://youtu.be/T4DNMkD5a1Y Please let us know what you think and please share this short film!! #churchfolkssecrets #lovehappens #awardwinning #bosslady #webseries #international #tvshows #inspired #producer #director #bossbabe #blessed #power #faithbasedfilms #gospelcomedy #television #digitalv #webseries #actors #castingcall #christianarts #entertainment #gospel #church #churchflow #churchstars #comedy https://www.instagram.com/p/BxS9VMWnUgo/?utm_source=ig_tumblr_share&igshid=247gncot3xmp
0 notes
mrdigitalvs-blog · 4 years
Text
WHAT IS DIGITAL MARKETING?
If you are promoting or advertising your Business,  Services or product with the help of digital media that means you are doing Digital Marketing for your business. There are various types of social media available to promote your business. You can use Facebook, Whatsapp, Twitter, Linked- In, Youtube to promote your business.
          People spent so much time on Social Media. There is a huge opportunity for you to rich out to them during that time. There are millions of websites on the internet and we use search engines to search for them. there are many search engines like Google, Yahoo, Bing, ask.com and many more, but more than 80% of internet users use google.com as a search engine. So your business must be on Google.
           We also help you to promote your business on Digital Media. We provide a free consultation. If you want to grow your business then take a smart decision and join US on https://mrdigivs.com
0 notes
ultrafrancob-blog · 5 years
Photo
Tumblr media Tumblr media
PROYECTO 1: ELECTRIZAPP
La clase del 12 de septiembre nuestra clase de dividió en grupos para empezar a trabajar y desarrollar nuestros proyectos.
Lo más difícil fue saber qué es lo que íbamos a desarrollar, cual era nuestra necesidad o la necesidad que puedan llegar a tener nuestros usuarios la cual íbamos  a facilitar. Al no saber cual iba a ser nuestros objetivo empezamos tirando ideas sobre distintos problemas cotidianos que teníamos, gastos necesarios o excesos de productos que tuviéramos, etc.
Tomando en cuenta todo esto, tomamos como problema el gasto excesivo de electricidad que tenemos, nos preguntamos si habría alguna manera más allá de tener electrodomésticos de alto rendimiento, si habría alguna manera de acortar nuestros gastos aun mas. La solución que encontramos a este problema era mediante la creación y desarrollo de una App y arduinos, conectar un medidor a lo que vendría a ser la llave general de luz de nuestras casa y que esta de una señal a nuestros celulares, dando datos sobre los consumos que tenemos en nuestros hogares, de esta amera si excedemos cierto límite de electricidad por tener demasiadas cosas encendida, podríamos ir a apagarlas o setear de alguna manera para que los electrodomésticos que estén encendidos pero no en uso, se apaguen. La idea que teníamos era lograr que a partir de la detección de un sensor, se prendiera una luz led que detecta la presencia de este campo.
Probamos varias veces hacer funcionara el sensor analógico, pero no logramos que este funcione cuando le acercábamos un imán al sensor. Por eso, utilizamos el sensor lineal. 
El código final de arduino que hicimos fue:
int ledRojo = 13 ; // LED on arduino int ledVerde = 12; int digitalPin = 3; // linear Hall magnetic sensor digital interface int analogPin = A0; // linear Hall magnetic sensor analog interface int digitalVal ; // digital readings int analogVal; // analog readings
void setup () { pinMode (ledRojo, OUTPUT); pinMode (ledVerde, OUTPUT); pinMode (digitalPin, INPUT); //pinMode(analogPin, INPUT); Serial.begin(9600); }
void loop () { // Read the digital interface analogVal = analogRead(analogPin)   ; digitalVal = digitalRead(digitalPin) ; //Serial.println(digitalVal); if (analogVal < 510 and analogVal > 460)  // When magnetic field is present, Arduino LED is on {   digitalWrite (ledVerde, HIGH);
} else if (analogVal<490 and analogVal > 400) {   digitalWrite (ledRojo, HIGH);   digitalWrite(ledVerde,LOW); } else  {   digitalWrite (ledRojo, LOW);   digitalWrite (ledVerde, LOW);   } // Read the analog interface
Serial.println(analogVal); // print analog value
delay(300); }
0 notes
nigeriandj · 5 years
Photo
Tumblr media
Range TWELVE vs TECHNICS 1210MKII Digitalvs Analog... Which would you prefer? Do you own either or both? Join the Conversation ⬇️⬇️ #NigerianDJ https://www.instagram.com/p/B3j4UNJgMLJ/?igshid=1j0l7agqotu1r
0 notes
magdalenagpaz · 5 years
Text
Proyecto ElectrizApp
El jueves 12 de septiembre, nos juntamos en grupos para empezar a desarrollar un proyecto. Mi grupo lo formaron Rodrigo Llofriu, Martín Méndez, Federico Machado y Franco Brignoli.
Comenzamos pensando en problemas reales que teníamos nosotros o que veíamos que tenía la población en general.
Después de estar unos minutos desarrollando una lluvia de ideas, el problema que encontramos más importante fue el gasto de energía eléctrica que existe en nuestros hogares. 
Luego, comenzamos a pensar en una solución para este problema. El problema que se nos ocurrió fue conectar sensores a los dispositivos eléctricos y mediante una app, enlazar los sensores y poder mostrar la información correspondiente al gasto de cada dispositivo y lograr controlarlos desde el celular.
Para eso, utilizamos Arduino y sensores de campo magnético. Teníamos dos tipos de sensores, uno lineal y uno analógico. A partir de esto, comenzamos a prototipar y a probar el código hasta lograr que funcione.
La idea que teníamos era lograr que a partir de la detección de un sensor, se prendiera una luz led que detecta la presencia de este campo.
Probamos varias veces hacer funcionara el sensor analógico, pero no logramos que este funcione cuando le acercábamos un imán al sensor. Por eso, utilizamos el sensor lineal. 
El código final de arduino que hicimos fue:
int ledRojo = 13 ; // LED on arduino int ledVerde = 12; int digitalPin = 3; // linear Hall magnetic sensor digital interface int analogPin = A0; // linear Hall magnetic sensor analog interface int digitalVal ; // digital readings int analogVal; // analog readings
void setup () {  pinMode (ledRojo, OUTPUT);  pinMode (ledVerde, OUTPUT);  pinMode (digitalPin, INPUT);  //pinMode(analogPin, INPUT);  Serial.begin(9600); }
void loop () {  // Read the digital interface  analogVal = analogRead(analogPin)   ;  digitalVal = digitalRead(digitalPin) ;  //Serial.println(digitalVal);  if (analogVal < 510 and analogVal > 460)  // When magnetic field is present, Arduino LED is on  {    digitalWrite (ledVerde, HIGH);
 }  else if (analogVal<490 and analogVal > 400)  {    digitalWrite (ledRojo, HIGH);    digitalWrite(ledVerde,LOW);  }  else   {    digitalWrite (ledRojo, LOW);    digitalWrite (ledVerde, LOW);    }  // Read the analog interface
 Serial.println(analogVal); // print analog value
 delay(300); }
Logramos que mediante la cercanía de un imán al sensor, se prendiera  una luz led.
Luego, para mejorar el proyecto, colocamos dos luces led, una roja y una verde.
Cuando el iman estaba muy próximo al iman, prendía la luz roja, cuando estaba a una distancia media prendía la luz roja y la luz verde, y cuando estaba a una distancia superior prendía la luz verde únicamente.
Luego, desarrollamos un diseño para la aplicación:
Tumblr media Tumblr media
Y así, concluímos nuestro proyecto. 
0 notes
Link
The Global Commercial Digital Valve Positioner Market report categorizes the market based on top manufacturers, regions, type and application. This report analyzes the potential of Digital Valve Positioner Industry in the present as well as the future prospects to 2022 from various angles in detail
This Research, recently published a detailed market research study focused on the Global Digital Valve Positioner Industry research reports  with figures as recent as 2017 and forecasts up to 2022 that helps you track the unprecedented growth seen in the Machinery & Equipment industry giving you an edge to not just compete but to outmatch the competition.  
0 notes
enterthezonetv · 7 years
Photo
Tumblr media
The Indikator and Trish Barnes on the set of Enter The Zone TV back in Season 3. Great interview. #digitalmarketing #digitalcontent #digitalcontent #digitalv #enterthezonetv #dentdamagetv #dentdamagetv2 #theindikatortvhost #trishbarnes #getmoneyfilmz #literacyuniversity #blacktvmedia #blacktvnetwork #blacktvnetwork #zype #ottcontent #rokutv #amazonefiretv #amazonfiresticktv #hiphop #youarethebrand http://ift.tt/2uR3DNv http://ift.tt/2uRHX3B
0 notes
mrdigitalvs-blog · 4 years
Text
Mr.Digital VS - Social Media Marketing Company in pune
Mr. DIGITAL VS- Best Social Media Marketing Company in Pune. Join us & we will help you to
1) Build Your Brand.
2) Connect with Customers.
3) Promote Products and Services.
4) Convert Visitors to Customers. 
CALL/WHATSAPP- +91 99750 68402
VISIT NOW- https://mrdigivs.com/social-media-marketing-company-in-pune
/#DigitalVS#digitalmarketing#socialmedia#GoDigital
0 notes
Link
The Global Commercial Pharmaceutical Fume Hoods Market report categorizes the market based on top manufacturers, regions, type and application. This report analyzes the potential of Pharmaceutical Fume Hoods Industry in the present as well as the future prospects to 2022 from various angles in detail
This Research, recently published a detailed market research study focused on the Global Pharmaceutical Fume Hoods Industry research reports  with figures as recent as 2017 and forecasts up to 2022 that helps you track the unprecedented growth seen in the Machinery & Equipment industry giving you an edge to not just compete but to outmatch the competition.  
0 notes
enterthezonetv · 7 years
Photo
Tumblr media
The Indikator and Trish Barnes on the set of Enter The Zone TV back in Season 3. Great interview. #digitalmarketing #digitalcontent #digitalcontent #digitalv #enterthezonetv #dentdamagetv #dentdamagetv2 #theindikatortvhost #trishbarnes #getmoneyfilmz #literacyuniversity #blacktvmedia #blacktvnetwork #blacktvnetwork #zype #ottcontent #rokutv #amazonefiretv #amazonfiresticktv #hiphop #youarethebrand http://ift.tt/2uR3DNv
0 notes