Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,150,286 members, 7,807,971 topics. Date: Thursday, 25 April 2024 at 12:39 AM

Esp 8266 Wifi Module Arduino Hack - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / Esp 8266 Wifi Module Arduino Hack (2481 Views)

Why Are Females Not Interested In IT?( Esp In Nigeria) / How To Hack Bank Account In Nigeria In 30 Minutes / V3 Nodemcu 4m Bytes Lua Wifi Development Board Based Esp8266 Esp-12e (2) (3) (4)

(1) (Reply) (Go Down)

Esp 8266 Wifi Module Arduino Hack by Nobody: 10:45am On May 01, 2018
Has anybody work with an esp8266 WiFi module I need help urgently
Re: Esp 8266 Wifi Module Arduino Hack by kayboid: 7:27pm On May 01, 2018
Worked on the esp8266 nodemcu
Re: Esp 8266 Wifi Module Arduino Hack by kayboid: 7:28pm On May 01, 2018
Yeah worked on nodemcu esp8266
Re: Esp 8266 Wifi Module Arduino Hack by tunasha(m): 12:26am On May 03, 2018
What challenges are you facing with it,talk about here and let me solve it for you so that others can as well learn something

1 Like

Re: Esp 8266 Wifi Module Arduino Hack by Nobody: 10:14am On May 05, 2018
tunasha:
What challenges are you facing with it,talk about here and let me solve it for you so that others can as well learn something
am working with esp8266 01 wifi module am building a robotic arm that it servo motors can be control through the internet have design the web interface and written the code for the arduino the problem now us us the WiFi module do not received information from the webpage if any one to go through my code I can send it

contact 07062402310

thank for your assistance it my final year project
Re: Esp 8266 Wifi Module Arduino Hack by Nobody: 10:16am On May 05, 2018
onoerime:
Damgud uAGF65SqPVzp
don't get you
Re: Esp 8266 Wifi Module Arduino Hack by tunasha(m): 2:28am On May 07, 2018
Damgud:
am working with esp8266 01 wifi module am building a robotic arm that it servo motors can be control through the internet have design the web interface and written the code for the arduino the problem now us us the WiFi module do not received information from the webpage if any one to go through my code I can send it

contact 07062402310

thank for your assistance it my final year project
upload the code let me help u adjust it
Re: Esp 8266 Wifi Module Arduino Hack by Nobody: 8:44am On May 07, 2018
tunasha:
upload the code let me help u adjust it
can you send me your mail or whatapp so I do the code is quite lengthy
Re: Esp 8266 Wifi Module Arduino Hack by Nobody: 8:46am On May 07, 2018
tunasha:
upload the code let me help u adjust it
<!DOCTYPE html>
<html>

<head>
<!-- header details -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ROBOTIC Controller</title>
<meta name="keywords" content="Internet of thing based control robotic arm with live video feeds for monitoring">
<meta name="description" content="Internet of thing based control robotic arm with live video feeds for monitoring">

<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!-- Lib CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">

<!-- style CSS -->
<link rel="stylesheet" href="./assets/css/style.css">

<!--[if IE]>
<link rel="stylesheet" href="css/ie.css">
<![endif]-->

<!-- Skins CSS -->
</head>

<body>
<!-- main page -->
<div>
<div>
<!-- header -->
<header>
<div>
<h4>Internet of Things (IOT)</h4>
<div class="connect">
<button type="button" class="btn btn-success">Connect</button>
<button type="button" class="btn btn-danger active" >Disconnect</button>
</div>
</div>
</header>
<!-- header ends -->

<!-- IP Request -->
<div class="context">
<h4>Web Base Robotic Arm Control Interface</h1>
<div class="ip-module">
<!-- wifi module ip address input -->
<FORM NAME="form" ACTION="" METHOD="GET">
<div class="form-group">
Enter IP address of Wifi-module:
<INPUT TYPE="text" NAME="robotIP" VALUE=" " class="ip" >
</div>
</FORM>
</div>
</div>
<!-- IP Request Ends-->

<hr>

<div class="container">
<div class="row">
<!-- robot arm slider section for arm control -->
<div class="col-md-4 col-xs-4 col-lg-4">
<h4 class="context1">Move sliders until desired Arm position is achieved.</h4>
<div class="slider-input">
<form role="form">
<!-- base slider -->
<div class="slider">
<div>
<h4>Base slider</h4>
<h5> move slider to rotate the base </h5>
<input type="range" min="20" max="170" name="baseslider" onmouseup="baseservo(this.value)" />
</div>
</div>

<!-- shoulder slider -->
<div class="slider">
<div>
<h4>Shoulder slider</h4>
<h5> move slider to rotate shoulder </h5>
<input type="range" min="20" max="140" name="shoulderslider" onmouseup="shoulderservo(this.value)" />
</div>
</div>

<!-- elbow slider -->
<div class="slider">
<div>
<h4>Elbow slider</h4>
<h5> move slider to rotate the shoulder</h5>
<input type="range" min="20" max="160" name="elbowslider" onmouseup="elbowservo(this.value)" />
</div>
</div>

<!-- wristslider -->
<div class="slider">
<div>
<h4>Wrist slider</h4>
<h5> move slider to rotate wrist </h5>
<input type="range" min="20" max="160" name="wristslider" onmouseup="wristservo(this.value)" />
</div>
</div>

<!-- griper slider -->
<div class="slider">
<div>
<h4>Gripper</h4>
<h5> Scroll to open or close griper </h5>
<input type="range" min="30" max="160" name="gripperslider" onmouseup="griperservo(this.value)" />
</div>
</div>
</form>
</div>
</div>
<!-- robot arm slider section for arm control ends-->

<!-- live video streaming sections -->
<div class="col-md-7 col-xs-7 col-lg-7 col-md-offset-1">
<div class="feed">
<video height="325" controls="autoplay" src="http://192.163.98.05"> </video>
</div>
<p>(live video stream of Robotic arm in operation)</p>
</div>
<!-- live video streaming sections ends-->
</div>
</div>
</div>

<!-- footer -->
<footer>
<div class="container">
<p>Design by STEPHEN Damilare Segun MEE/2013/079</p>
</div>
</footer>
</div>

<!-- Javascript library -->
<script src="assets/js/jquery.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/control.js"></script>


</body>

</html>
Re: Esp 8266 Wifi Module Arduino Hack by Nobody: 8:48am On May 07, 2018
Damgud:

<!DOCTYPE html>
<html>

<head>
<!-- header details -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ROBOTIC Controller</title>
<meta name="keywords" content="Internet of thing based control robotic arm with live video feeds for monitoring">
<meta name="description" content="Internet of thing based control robotic arm with live video feeds for monitoring">

<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!-- Lib CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">

<!-- style CSS -->
<link rel="stylesheet" href="./assets/css/style.css">

<!--[if IE]>
<link rel="stylesheet" href="css/ie.css">
<![endif]-->

<!-- Skins CSS -->
</head>

<body>
<!-- main page -->
<div>
<div>
<!-- header -->
<header>
<div>
<h4>Internet of Things (IOT)</h4>
<div class="connect">
<button type="button" class="btn btn-success">Connect</button>
<button type="button" class="btn btn-danger active" >Disconnect</button>
</div>
</div>
</header>
<!-- header ends -->

<!-- IP Request -->
<div class="context">
<h4>Web Base Robotic Arm Control Interface</h1>
<div class="ip-module">
<!-- wifi module ip address input -->
<FORM NAME="form" ACTION="" METHOD="GET">
<div class="form-group">
Enter IP address of Wifi-module:
<INPUT TYPE="text" NAME="robotIP" VALUE=" " class="ip" >
</div>
</FORM>
</div>
</div>
<!-- IP Request Ends-->

<hr>

<div class="container">
<div class="row">
<!-- robot arm slider section for arm control -->
<div class="col-md-4 col-xs-4 col-lg-4">
<h4 class="context1">Move sliders until desired Arm position is achieved.</h4>
<div class="slider-input">
<form role="form">
<!-- base slider -->
<div class="slider">
<div>
<h4>Base slider</h4>
<h5> move slider to rotate the base </h5>
<input type="range" min="20" max="170" name="baseslider" onmouseup="baseservo(this.value)" />
</div>
</div>

<!-- shoulder slider -->
<div class="slider">
<div>
<h4>Shoulder slider</h4>
<h5> move slider to rotate shoulder </h5>
<input type="range" min="20" max="140" name="shoulderslider" onmouseup="shoulderservo(this.value)" />
</div>
</div>

<!-- elbow slider -->
<div class="slider">
<div>
<h4>Elbow slider</h4>
<h5> move slider to rotate the shoulder</h5>
<input type="range" min="20" max="160" name="elbowslider" onmouseup="elbowservo(this.value)" />
</div>
</div>

<!-- wristslider -->
<div class="slider">
<div>
<h4>Wrist slider</h4>
<h5> move slider to rotate wrist </h5>
<input type="range" min="20" max="160" name="wristslider" onmouseup="wristservo(this.value)" />
</div>
</div>

<!-- griper slider -->
<div class="slider">
<div>
<h4>Gripper</h4>
<h5> Scroll to open or close griper </h5>
<input type="range" min="30" max="160" name="gripperslider" onmouseup="griperservo(this.value)" />
</div>
</div>
</form>
</div>
</div>
<!-- robot arm slider section for arm control ends-->

<!-- live video streaming sections -->
<div class="col-md-7 col-xs-7 col-lg-7 col-md-offset-1">
<div class="feed">
<video height="325" controls="autoplay" src="http://192.163.98.05"> </video>
</div>
<p>(live video stream of Robotic arm in operation)</p>
</div>
<!-- live video streaming sections ends-->
</div>
</div>
</div>

<!-- footer -->
<footer>
<div class="container">
<p>Design by STEPHEN Damilare Segun MEE/2013/079</p>
</div>
</footer>
</div>

<!-- Javascript library -->
<script src="assets/js/jquery.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/control.js"></script>


</body>

</html>
that just the web interface the arduino is twice that
Re: Esp 8266 Wifi Module Arduino Hack by TisteAndii: 1:09am On May 12, 2018
What's the exact data you're sending to the ESP? All we can tell from this is that the ESP is probably functioning as a server here and receiving data from your browser. But you've not uploaded the relevant control code (which I assume is in control.js) nor have you provided the ESP's own code? How do you expect help?
Re: Esp 8266 Wifi Module Arduino Hack by Nobody: 3:30pm On May 14, 2018
TisteAndii:
What's the exact data you're sending to the ESP? All we can tell from this is that the ESP is probably functioning as a server here and receiving data from your browser. But you've not uploaded the relevant control code (which I assume is in control.js) nor have you provided the ESP's own code? How do you expect help?
thanks problem solve
Re: Esp 8266 Wifi Module Arduino Hack by ugwum007(m): 9:13am On May 16, 2018
Since you have access to internet Why don't I get you check out pubnub
Re: Esp 8266 Wifi Module Arduino Hack by jjwilliams(m): 9:34pm On Jun 04, 2018
Where can I buy an ESP8266 module in lagos?
Re: Esp 8266 Wifi Module Arduino Hack by TisteAndii: 7:12pm On Jun 08, 2018
Still trying to understand why this topic is called a 'hack'. You can buy an ESP8266 from HUB360 in Lagos, but I've found that the ESP32 is a lot more capable (more gpio, 2 freaking cores + an EXTRA low power core, more speed, more flash and ram, etc) and more reliable in general. It's also supported by Arduino IDEs so you lose nothing. You can buy it at store.microscale.net.
Re: Esp 8266 Wifi Module Arduino Hack by Nobody: 3:33pm On Jun 25, 2018
just in case you need help in one of this check my signature and chat me up all for free.

Re: Esp 8266 Wifi Module Arduino Hack by Nobody: 3:37pm On Jun 25, 2018
TisteAndii:
Still trying to understand why this topic is called a 'hack'. You can buy an ESP8266 from HUB360 in Lagos, but I've found that the ESP32 is a lot more capable (more gpio, 2 freaking cores + an EXTRA low power core, more speed, more flash and ram, etc) and more reliable in general. It's also supported by Arduino IDEs so you lose nothing. You can buy it at store.microscale.net.

called it a hack because esp8266 WiFi module can not be used directly you need to preset your own configuration on the module when we say hack in hardware we don't mean "hack hack"
Re: Esp 8266 Wifi Module Arduino Hack by Nobody: 3:38pm On Jun 25, 2018
more pic

1 Like

Re: Esp 8266 Wifi Module Arduino Hack by Nobody: 1:52pm On Jul 20, 2018
.

Re: Esp 8266 Wifi Module Arduino Hack by Nobody: 10:46am On Aug 02, 2018
you are in need of customers data eg. 1. Mail address 2. phone contact of individuals in different job profession for 1. E-commerce marketing purpose, 2. Boost your business information 3. Reach out to specific type of people etc Contact Quantum software technologies Mr Dami ---- +2347062402310 Customers relations officer Mr Liade --- +2348131619047 Technical relations officer
Re: Esp 8266 Wifi Module Arduino Hack by Nobody: 6:11pm On Aug 10, 2018
.

(1) (Reply)

How Do I Make A Java Prog Run At Startup? / Php: How To Display A Message To A Specific User ID Or User Name / What Is The Difference Between A Programmer And A Web Designer

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 59
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.