avatarKurt Dillon

Free AI web copilot to create summaries, insights and extended knowledge, download it at here

3952

Abstract

SON).</p><p id="4cb7">Let’s quickly review the code.</p><p id="1704">Guided by a fellow programmer and partner of Jungletronics Ishida (<a href="https://github.com/alexishida?tab=repositories">https://github.com/alexishida?tab=repositories</a>) who could point us in the right direction, we modified the output code to JSON. The idea is to connect the Arduino with sensors and to make it serving restful web service.</p><p id="2a04">We will use JSON and HTTP REST as communication protocols. We are very close to this dream !!</p><p id="88e9"><b>Code (<a href="http://goo.gl/9gw6Aw"></a></b><a href="http://goo.gl/9gw6Aw">GitHub </a>REPO<b>):</b></p> <figure id="8156"> <div> <div>

            <iframe class="gist-iframe" src="/gist/giljr/a82e5defca0bceafd3719ca08d65ba28.js" allowfullscreen="" frameborder="0" height="undefined" width="undefined">
          </div>
        </div>
    </figure></iframe></div></div></figure><p id="e0b7">We carry the necessary libs. There are two variables of our wifi network and set the server on port 80. Standard right?!</p><p id="54d8">We keep a variable for the led but t in the module. We declare the method that handleroot().</p><p id="06af">The setup is used to configure the LED as output, put the serial in 115200, firmware standard began our wifi, and print a blank line, according to HTTP protocol.</p><p id="99fa">While the connection is not established, a point is printed on the serial.</p><p id="fb02">MDNS is a simple implementation of multicast DNS query support for an Arduino running on the ESP8266 chip. Only support for resolving address queries is currently implemented.</p><p id="6320">The (This) line <i>server.on</i>: inside this part, we can put how many links we want.</p><p id="88ca">The loop to manage the client session.</p><p id="dfb9">keep watching this video series because we will present the assembly of a board to help you with prototyping this chip. We use little solder. See our result:</p><figure id="3d76"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*EO5sg5RdATtrO7MPAerCzg.jpeg"><figcaption>CADDY — For ESP8266 Module to sit into!!! To program use this <a href="https://www.amazon.com/ESP-01S-ESP8266-Wireless-Adapter-4-5-5-5V/dp/B07KF119YB">USB adapter</a>; To run it use this <a href="https://www.amazon.com/DIYmall-ESP8266-Breakout-Breadboard-Transceiver/dp/B01G6H46UK">one</a>. Or follow <a href="https://readmedium.com/mit-app-inventor-2-meets-esp8266-03-kidserie-fa92cc8ae8a2">this</a> post.</figcaption></figure><p id="f0aa">Collision Condition &amp; Route to Nowhere:</p><figure id="7926"><img src="https://cdn-images-1.readmedium.com/v2/resize:fit:800/1*5BogWgIQUJvJr6HqJcCFOA.gif"><figcaption>Collision Condition &amp; Route to Nowhere</figcaption></figure><p id="cd73">Let’s assume we want to connect all together: Arduino, ESP8266 via USB cable from your laptop.</p><p id="7277">In this scenario, the Arduino sends to your computer while the</p><p id="04ee">ESP8266 tries to transmit too in the same way.</p><p id="3c4c">Ops!</p><p id="5059">Certainly, data will collide !!!</p><p id="5062">Garbled data cannot be properly interpreted by ESP8266 — You cannot program Arduino or talk to it from your computer while ESP8266 is connected to a computer serial.</p><p id="86d8">Now in another scenario (green on the graph).</p><p id="e489">The computer sends a message to the Arduino.</p><p id="b93b">Oops again!</p><p id="a888">Which route to follow? There are two options!</p><p id="ae93">Who does not know where to go, go nowhere!</p><p id="e8e4">This is a collision condition and route do nowhere scenario!</p><p id="1643">Both try to transmit to the computer at the same time.</p><p id="5f78">ESP8266 will most likely RESET!!!</p><p id="21c7">Now let’s separate the components.</p><p id="1738">First, remove the Atmega chip from Arduino and program ESP8266, or, better, bypass

Options

it!! (see video below)</p><p id="5fe2">Then plug back the ATmega and program the Arduino</p><p id="a342">Simple isn't it?</p><p id="d432">Use module ESP8266 in WiFi and Arduino in standalone mode!!!</p> <figure id="87ff"> <div> <div> <img class="ratio" src="http://placehold.it/16x9"> <iframe class="" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FhH8t4iPAVJI%3Ffeature%3Doembed&amp;url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DhH8t4iPAVJI&amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FhH8t4iPAVJI%2Fhqdefault.jpg&amp;key=d04bfffea46d4aeda930ec88cc64b87c&amp;type=text%2Fhtml&amp;schema=youtube" allowfullscreen="" frameborder="0" height="480" width="854"> </div> </div> </figure></iframe></div></div></figure><p id="129e">Thanks for watching the video (read this article) !!!</p><p id="8f19">Bye!!!</p><p id="c7e8"><a href="https://drive.google.com/drive/folders/0B8iMbc-iQqlULXhNYWpUUUoteGM?usp=sharing">Download all Project Files</a></p><h2 id="8007">Troubleshooting:</h2><p id="801c">When initiating the upload process in the Arduino IDE, press the Upload Button and simultaneously hold the White Wire connected to RST through 10k Ohms, providing a pulse on the GND. This action should be performed a few seconds before the Arduino indicates the uploading phase, typically during the compilation process. Ensure that the Orange Wire (GPIO0) is grounded during this time.</p><p id="3540">Once the upload is complete, detach the Orange Wire from the GND, allowing it to float momentarily. Subsequently, while opening the Serial Terminal, provide another pulse on the GND using the White Wire. Verify that the Serial Monitor acknowledges the:</p><div id="2f87"><pre>Connecting to <your_wifi_ssid> …… <span class="hljs-built_in">WiFi</span> connected <span class="hljs-built_in">Server</span> started <your_port_number></pre></div><p id="e4f8">Do not forget to edit the code according to your WiFi network;) <your_wifi_ssid> and <your_port_number></your_port_number></your_wifi_ssid></p><p id="5094">Based on: Renato Aloi’s <a href="http://renatoaloi.blogspot.com.br/2016/01/esp8266-no-arduino-ide.html">Tutorial</a> (Thanks a lot for your hard work Aloi!!!)</p><p id="d531">Migrate from: <a href="http://jungletronics.blogspot.com.br/">http://jungletronics.blogspot.com.br/</a></p><h1 id="acf7">Related Posts</h1><p id="54d1">Meet IoT Boards: ESP8266 & ESP32 —<a href="https://readmedium.com/meet-iot-boards-esp8266-esp32-ba12e41c1a3b"> <b>Which are the best? ESPs or RPis or Arduino Boards?</b> </a>IoT — Episode #01</p><p id="dc72"><a href="https://readmedium.com/arduino-headless-setup-esp-8266-wifi-cheap-chip-16-arduserie-ffaecf77729a"><b>Arduino Headless Setup & ESP8266</b></a> (WIFI cheap chip!) — Rather Stunning MCU!!! — #arduSerie 16</p><p id="3892"><a href="https://readmedium.com/flashing-the-official-espressif-firmware-in-esp8266-arduserie-17-2234fc088076"><b>Flashing The Official ESPRESSIF Firmware in ESP8266 !!! — Easy ESP8266 Flashing!!!</b></a> — #arduSerie 17</p><p id="1753"><a href="https://readmedium.com/get-started-using-at-commands-w-esp8266-arduserie-19-a09f20571b08"><b>Get Started Using AT Commands w/ ESP8266 — Multiple Connection as TCP Server </b></a>— #arduSerie 19</p><p id="e2da"><a href="https://readmedium.com/your-first-nodemcu-lua-script-flash-on-esp8266-e614b33a6de1"><b>Your First NodeMCU/Lua Script Flash on ESP8266!!!</b> </a>— Let’s get our feet wet with NodeMCU/Lua and see what happens !!- #arduSerie 20</p><p id="b017"><i>— Edited in Nov 2018 — Grammar corrections w/ <a href="http://www.grammarly.com/‎">Grammarly </a>— Send code to gist —</i>Troubleshooting<i></i></p><p id="8c1a"><i>— Edited on Jan 2024 — Grammar corrections w/ <a href="http://www.grammarly.com/‎">Grammarly</a> and some links to adapter —</i></p></article></body>

Casey Anthony Revisited: Misunderstood or Got Away Clean?

Since the death of 2-year-old Caylee Anthony in 2008, Casey, the once free-spirited single mother, has been the subject of a lot of media speculation — almost 15 years later, new revelations could shed some light on the horrific tragedy

Casey Anthony during the filming of Peacock’s “Casey Anthony: Where the Truth Lies” used with permission by Peacock Network to author and true crime podcaster Kurt Dillon

During her trial and again in a 2022 documentary about her case and the tragic death of her 2-year-old daughter, Casey Anthony very outspokenly blamed her father, George Anthony, for the child’s death.

A selfie photo of Casey and Caylee taken less than 2 months before Caylee’s death — Image provided to author and true crime podcaster Kurt Dillon courtesy of Casey Anthony's private collection

As a response to those newly reiterated allegations, her parents agreed to take polygraph tests regarding the muddled circumstances that still surround the toddler’s death. What’s more, they agreed to do it in front of A&E’s cameras as part of a new network special feature dedicated to the case — and the allegations made by Casey of her father’s involvement.

Today, Casey Anthony lives a pretty subdued and secretive life in South Florida, the same state where the incidents happened.

More than a year after Casey Anthony again publicly blamed her father for the death of her 2-year-old daughter during a Peacock Network documentary on the case, her parents decided to answer the allegations on the A&E network by taking recorded polygraphs.

Caylee Anthony’s death has remained a mystery now for almost fifteen years — since July 2008 — when the toddler disappeared. Months later, her remains were found in a wooded area not far from the Orlando home she and Casey shared with her grandparents, by a utility technician working in the area.

For those of you who may not remember, after initially being charged in connection with her daughter’s death, Casey was ultimately found not guilty in a highly publicized 2011 trial. She did, however, receive a combined four-year jail stint. That was for four consecutively run one-year misdemeanor sentences which were derived from 4 convictions for falsifying information to police. She also received a $4,000 fine.

Casey was then released only two weeks after the trial because she had already been incarcerated for several years pending her trial for Caylee’s murder. At the time of her sentencing, Casey received credit for already having served 1,043 days in jail. When combined with the applicable good time deduction, both the time served, and the good time credit were deducted from the maximum 4-year sentence allowing her to be released only two weeks after the trial.

In 2022, while appearing in the Peacock docuseries, Casey said that her father, George Anthony, was the one who was actually responsible for Caylee’s death. She alleged George Anthony killed his granddaughter to cover up that he had sexually assaulted the toddler. Casey has also claimed that she too was a victim of George Anthony’s sexual misconduct while growing up.

Recently, A&E aired “Casey Anthony’s Parents: The Lie Detector Test.” That special featured George Anthony, 72, and Cindy Anthony, 65, taking polygraph tests about their granddaughter’s death in which George denied knowing Caylee’s whereabouts during her disappearance. But it’s the couples’ actions and physical responses during the polygraphs that have raised more than a little speculation as to Casey’s allegations.

Since the trial, much ado has been made about Casey’s whereabouts, relationships, and even if she were attempting to have more children. Shortly after her release in 2011, reports initially tracked Casey’s whereabouts in various states, including Arizona and California.

In her first on-camera interview for Peacock’s “Casey Anthony: Where the Truth Lies” docuseries, Casey revealed she has been working as a research assistant for Patrick McKenna, the lead investigator of the defense team during her trial, and that she’s been doing so for the past 10 and a half years. McKenna’s practice is based in West Palm Beach, Florida.

According to reports, McKenna took Casey in after the trial to provide a safe space and decided to give her a job helping the solo practitioner stay organized in his law practice.

“With the approval of my family, I brought her into my house,” McKenna said on the docuseries. “I’m surrounded by filings. My house is a mess. She’s very organized and so I saw she could really help me out. I felt like she needed to do something.”

In the report, Casey said she has primarily been working on criminal defense cases to pay forward the work of her defense team.

She also refers to McKenna as a father figure who allowed her to live in his home, rent-free, until she figured out her next steps — so long as she never took any photos to keep her location private.

In 2017, The Associated Press reported that Casey was still living in McKenna’s home. That assertion was further supported by a subsequent article in The Messenger which declared that Casey lived with McKenna until 2022, but now lives alone in an undisclosed area of Southern Florida.

The Messenger article also reported that Casey doesn’t go out much and is now completely estranged from her parents.

“I’ve had really bad social anxiety for the past decade,” Casey said in the Peacock docuseries. “Going to crowded places by myself is not something I feel comfortable doing anymore.”

According to the Peacock documentary, since the trial, Casey has also attempted to start 2 businesses, but neither Case Photography, LLC (launched in November 2015 and dissolved less than three years later), nor her private investigative company, Case Research & Consulting Services, LLC, (which to date has received no clients) has been even modestly successful.

If you have an unquenchable taste for true crime, you should also check out Kurt’s two true crime podcasts — The Veritas 7, and Veritas True Crime which also has a sister publication here on Medium under the same name. Veritas True Crime Medium Publication is always looking for new writers to write about true crime. Do you have what it takes?

Some other fascinating articles by Kurt Dillon that you might enjoy:

Kurt Dillon is a Medium Top Writer in Psychology, Social Media, and True Crime. He is the CEO of WOMEN — Wild Orchid Media & Entertainment Network, Inc., and is also a long-standing editor for the ILLUMINATION family of Medium publications. Kurt and his wife Crystal rescue abandoned animals and currently lavish love upon 5 abandoned and abused dogs and 6 abandoned cats at the time of this writing. Kurt’s social links and personal/professional websites are all available in his Medium bio.

Casey Anthony
True Crime
Child Abuse
Child Sex Abuse
Veritas True Crime
Recommended from ReadMedium