Defective ESP-07


Closed Thread
Results 1 to 11 of 11

Hybrid View

  1. #1
    Join Date
    Jan 2009
    Location
    Miami, Florida USA
    Posts
    699

    Default Re: Defective ESP-07

    Ooh, I see. Also, it took me a while to see that the difference between the "Not Good" and "Perfect" boards was the crystal oscillator installed with the wrong orientation.
    "No one is completely worthless. They can always serve as a bad example."

    Anonymous

  2. #2
    Join Date
    Jul 2005
    Location
    The Netherlands
    Posts
    40

    Default Re: Defective ESP-07

    @ MichelJasmin, would you share some BASIC code ? I still working on a LoRa 868MHz (RN2483) portable signal strength indication.

  3. #3
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    4,132

    Default Re: Defective ESP-07

    HI Gevo. Have you tested the RN2483 range?

    Also, why did you chose 868 instead of the 434 band? I am sure it goes far away.

    Ioannis

  4. #4
    Join Date
    Jul 2005
    Location
    The Netherlands
    Posts
    40

    Default Re: Defective ESP-07

    Hi Ioannis,

    I'm in located in Netherland and the LoRa network is here on 868MHz.

  5. #5
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    4,132

    Default Re: Defective ESP-07

    I believe that since we al are in Europe, LoRa is also legal, at 10mW, at 434MHz. The classic ISM Band.

    Of course on 868 you may have up to 0,5 Watt legal transmission.

    Have you done any range test?

    Ioannis

    P.S. @ MichelJasmin. We are tuned! And waiting!

  6. #6
    Join Date
    Feb 2013
    Location
    Quebec, Canada
    Posts
    67

    Default Re: Defective ESP-07

    Quote Originally Posted by Gevo View Post
    @ MichelJasmin, would you share some BASIC code ? I still working on a LoRa 868MHz (RN2483) portable signal strength indication.
    The ESP8266 gives the RSSI (Received signal strength indication) when you ask it to list all access points near by.

    For the ones who wants to know how to triangulate, here it is:

    Disclaimer: it's an approximate triangulation and the signal strength depends where is the source inside the home which impact the results.

    To understantd how I did it, see the triangulation as vectors with differents signal strengths. Each one "pulling" with it's own strength.
    All of the triangulation computing is done with some queries in the database. This saves A LOT of code.
    The RSSI (Received signal strength indication) is an attenuation given in negative dB: -90db is less than -60dB and so on. To simplify things I work with positive numbers as a kind of signal strength:

    Code:
    Strength = (100 + RSSI)
    Why 100? Because the RSSI given by the ESP never goes below -99dB.

    Some simple math now. For a given Access Point (AP) I do a sum of all the measured signal strength: let's call it [RSSI_Sum]

    Then for each sample (Strength @ coordinate) I compute a strength ratio (the vector "Strength"):
    Code:
    SignalRatio_@LatLong1 = Strength_@LatLong1 / [RSSI_Sum]
    SignalRatio_@LatLong2 = Strength_@LatLong2 / [RSSI_Sum]
    ...
    SignalRatio_@LatLong_n = Strengt_@LatLong_n / [RSSI_Sum]
    Then I triangulate (ok, approximate a triangulation) the lat/long by doing a sum of... I don't know how to explain it in english...
    for each GPS coordinate I do apply the SignalRatio of that coordinate then sum them all:
    Code:
    Latitude = Sum( Lat_n * [SignalRatio_n] ) 
    Longitude = Sum( Long_n * [SignalRatio_n] )
    It's a really rough triangulation because the planet is kind of round (Google "Mercator projection") but it's kind of OK for a few meters.

    Finally a build a HTML file with some generated JavaScript for the Google Maps API. Kind of ugly but for a one time project it's OK.

    If anyone want to know how I parsed the NMEA sentenses from the GPS let me know!
    Last edited by MichelJasmin; - 14th April 2016 at 04:23.

  7. #7
    Join Date
    Jan 2005
    Location
    Montreal, Quebec, Canada
    Posts
    3,154

    Default Re: Defective ESP-07

    Quote Originally Posted by rsocor01 View Post
    Ooh, I see. Also, it took me a while to see that the difference between the "Not Good" and "Perfect" boards was the crystal oscillator installed with the wrong orientation.
    Darn, I missed that.

    I thought he had disconnected one pin on the rightside chip. It looks like the lower rightmost pin has the solder removed.

    (I didn't read the link, that would be cheating )


    I don't live in Europe, but I was in France with my eldest back in September.

    Allison doing her Titanic pose.
    Name:  France Allison Titanic.png
Views: 7642
Size:  141.0 KB

    I HAD to see the track.
    Name:  France Le Mans.png
Views: 5425
Size:  137.5 KB

    I had to return here and share with her Mont-Saint-Michel.
    Name:  France Mont-Saint-Michel.png
Views: 13344
Size:  117.7 KB

    Can't go to France without seeing the splendor of Versailles.
    Name:  France Versailles.png
Views: 9261
Size:  195.2 KB
    Last edited by Demon; - 13th April 2016 at 17:36.
    My Creality Ender 3 S1 Plus is a giant paperweight that can't even be used as a boat anchor, cause I'd be fined for polluting our waterways with electronic devices.

    Not as dumb as yesterday, but stupider than tomorrow!

  8. #8
    Join Date
    Jan 2005
    Location
    Montreal, Quebec, Canada
    Posts
    3,154

    Default Re: Defective ESP-07

    For other Canadians:

    3.6 Amateur Service

    The amateur service will continue to have secondary status in the band 902–928 MHz throughout Canada. All types of emission are permitted. Amateur licensees are advised to consult with the Department to avoid operation on frequencies or sub-bands used by radio systems authorized on a primary basis in that area.
    http://www.ic.gc.ca/eic/site/smt-gst...g/sf01054.html


    So be careful what you buy off eBay or other sources.
    My Creality Ender 3 S1 Plus is a giant paperweight that can't even be used as a boat anchor, cause I'd be fined for polluting our waterways with electronic devices.

    Not as dumb as yesterday, but stupider than tomorrow!

Members who have read this thread : 1

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts