hacktronics.com Report : Visit Site


  • Ranking Alexa Global: # 1,114,449,Alexa Ranking in United States is # 666,064

    Server:Apache...
    X-Powered-By:PHP/5.6.27

    The main IP address: 34.224.53.51,Your server United States,Houston ISP:Halliburton Company  TLD:com CountryCode:US

    The description :hacktronics is your source for arduino, arduino shields, arduino sensors, and arduino kits...

    This report updates in 24-Jun-2018

Created Date:2008-09-03
Changed Date:2017-09-04

Technical data of the hacktronics.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host hacktronics.com. Currently, hosted in United States and its service provider is Halliburton Company .

Latitude: 29.698820114136
Longitude: -95.586791992188
Country: United States (US)
City: Houston
Region: Texas
ISP: Halliburton Company

the related websites

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called Apache containing the details of what the browser wants and will accept back from the web server.

Content-Length:10535
X-Powered-By:PHP/5.6.27
Set-Cookie:f7321c68dfcbae5f4406ad8dab65de85=4n8c885c0c528g2lsl6vfbhf66; path=/
Expires:Mon, 1 Jan 2001 00:00:00 GMT
Vary:Accept-Encoding
Keep-Alive:timeout=2, max=100
Server:Apache
X-Mod-Pagespeed:1.9.32.14-0
Connection:Keep-Alive
Pragma:no-cache
Cache-Control:no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0, no-cache
Date:Sun, 24 Jun 2018 12:58:00 GMT
P3P:CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
Content-Type:text/html; charset=utf-8
X-Frame-Options:SAMEORIGIN
Content-Encoding:gzip

DNS

soa:ns57.domaincontrol.com. dns.jomax.net. 2017101300 28800 7200 604800 3600
txt:"v=spf1 a mx ptr include:smtp.secureserver.net include:aspmx.googlemail.com include:gmail.com -all"
ns:ns58.domaincontrol.com.
ns57.domaincontrol.com.
ipv4:IP:34.224.53.51
ASN:14618
OWNER:AMAZON-AES - Amazon.com, Inc., US
Country:US
mx:MX preference = 0, mail exchanger = smtp.secureserver.net.
MX preference = 10, mail exchanger = mailstore1.secureserver.net.

HtmlToText

home tutorials projects tools contact us shopping accessories android adk arduino blinkm cables clearance components lcds power prototyping robotics sensors video-audio wearable computing wireless zigbee / xbee list all products product search advanced search username password remember me lost password? forgot your username? no account yet? register view cart/checkout your cart is currently empty. newest products! current sensor 30 amp $8.95 arduino pro $19.95 seeeduino mega $43.00 who's online we have 69 guests and 1 member online welcome to hacktronics hello electronics hackers. hacktronics.com was started in san diego, california by embedded computing/electronics enthusiasts. we created this site to help you get the components you need to create your projects fast. we specialize in the arduino platform. take a look at our arduino tutorials. arduino current sensor this arduino based current, voltage, and power sensor/meter tutorial was created for hacktronics by steve spence. for my off-grid ham radio and solar projects, i needed a way to measure volts, amps, watts, amp hours and watt hours. there's a couple of commercial products that can do this, but not with the flexibility i wanted. i designed a arduino micro-controller based solution that is very extensible. right now it monitors the above values of attached gear, and i'm thinking about adding web monitoring and a sd card for data collection. well, let's get started. here is the circuit for sensing the battery voltage: the arduino can accept up to 5v on a analog input. our battery voltage can range as high as 17vdc in certain charge cycles, so we designed a voltage divider that would provide 5v at 17v battery voltage, and less at various lower voltages. see http://en.wikipedia.org/wiki/voltage_divider for more information on voltage dividers. the code to read that value is as follows: batval = analogread(batmonpin); // read the voltage on the divider pinvoltage = batval * 0.00488; // calculate the voltage on the a/d pin // a reading of 1 for the a/d = 0.0048mv // if we multiply the a/d reading by 0.00488 then // we get the voltage on the pin. batteryvoltage = pinvoltage * ratio; // use the ratio calculated for the voltage divider // to calculate the battery voltage i have 4 possible nominal battery bank voltages. each battery bank has a higher possible charge voltage during certain charge cycles. i've called this max, and will prevent a voltage of over 5v being sent to the arduino pin during all charge cycles including equalize. solving for r1 r1 = ((r2*vin)/vout)-r2 with a r2 of 5k ohms, i get the following values of r1 for 4 battery voltages: nominal max r1 r2 ratio 12 17 12 5 2.40 24 34 12 2 6.00 36 51 12 1.3 9.23 48 68 12 0.9 13.33 all values are in k ohms. solve for vout to make sure vout never exceeds 5v vout = (r2/(r1+r2))*vin more details at http://arduinotronics.blogspot.com/2012/04/voltage-monitor.html all parts were obtained from hacktronics.com. additional math notes: i measured the voltage at a4 in respect to gnd, and with a 12.46 vin, i got a 3.52 vout. i also reported the actual adc output of the analogread by printing avgval to the lcd, and got 778 out of a max of 1023 (0-1024). i then calculated the multiplier for the adc, adc multiplier = 12.46 / 778 * (r1/ r2) sense that current! acs715 current sensor board: the next step is to track the current flowing, or produced by a source. we are using a acs715 hall effect sensor to track the current being passed. // read the analog in value: sensorvalue = analogread(analoginpin); // convert to milli amps outputvalue = (((long)sensorvalue * 5000 / 1024) - 500 ) * 1000 / 133; amps = (float) outputvalue / 1000; math alert!!! to calculate watt (volts * amps), amp hours (amps * hours), and watt hours (watts * hours) requires tracking the time component, and performing a bit of math: float watts = amps * batteryvoltage; sample = sample + 1; msec = millis(); time = (float) msec / 1000.0; totalcharge = totalcharge + amps; averageamps = totalcharge / sample; ampseconds = averageamps*time; amphours = ampseconds/3600; watthours = batteryvoltage * amphours; serial output: we can now output the results of the calculations to the serial port using the following code: serial.print("volts = " ); serial.print(batteryvoltage); serial.print("\t current (amps) = "); serial.print(amps); serial.print("\t power (watts) = "); serial.print(watts); serial.print("\t time (hours) = "); serial.print(time/3600); serial.print("\t amp hours (ah) = "); serial.print(amphours); serial.print("\t watt hours (wh) = "); serial.println(watthours); lcd display: keeping a computer connected all the time is inconvenient, so i added a lcd display to the project. lcd.setcursor(0,0); lcd.print(batteryvoltage); lcd.print(" v "); lcd.print(amps); lcd.print(" a "); lcd.setcursor(0,1); lcd.print(watts); lcd.print(" w "); lcd.print(time/3600); lcd.print(" h "); lcd.setcursor(0,2); lcd.print(amphours); lcd.print(" ah "); lcd.print(watthours); lcd.print(" wh "); all the code: the code, schematics, and photo's along with discussion is available at this url: http://tech.groups.yahoo.com/group/arduinohome/files/volt%20amp%20watt%20hour%20meter/ and http://forum.pololu.com/viewtopic.php?f=3&t;=5415 #include <liquidcrystal.h> /* this sketch describes how to connect a acs715 current sense carrier (http://www.hacktronics.com/sensors/current-sensor-30-to-30-amp/flypage.tpl.html) to the arduino, and read current flowing through the sensor. */ liquidcrystal lcd(7, 8, 9, 10, 11, 12); /* vcc on carrier board to arduino +5v gnd on carrier board to arduino gnd out on carrier board to arduino a0 insert the power lugs into the loads positive lead circuit, arrow on carrier board points to load, other lug connects to power supply positive voltage divider 11.66 from + to a4 4.62k from a4 to gnd ratio 2.5238 */ int batmonpin = a4; // input pin for the voltage divider int batval = 0; // variable for the a/d value float pinvoltage = 0; // variable to hold the calculated voltage float batteryvoltage = 0; int analoginpin = a0; // analog input pin that the carrier board out is connected to int sensorvalue = 0; // value read from the carrier board int outputvalue = 0; // output in milliamps unsigned long msec = 0; float time = 0.0; int sample = 0; float totalcharge = 0.0; float averageamps = 0.0; float ampseconds = 0.0; float amphours = 0.0; float watthours = 0.0; float amps = 0.0; int r1 = 11660; // resistance of r1 in ohms int r2 = 4620; // resistance of r2 in ohms float ratio = 0; // calculated from r1 / r2 void setup() { // initialize serial communications at 9600 bps: serial.begin(9600); lcd.begin(20, 4); } void loop() { int samplebval = 0; int avgbval = 0; int sampleampval = 0; int avgsav = 0; for (int x = 0; x < 10; x++){ // run through loop 10x // read the analog in value: sensorvalue = analogread(analoginpin); sampleampval = sampleampval + sensorvalue; // add samples together batval = analogread(batmonpin); // read the voltage on the divider samplebval = samplebval + batval; // add samples together delay (10); // let adc settle before next sample } avgsav = sampleampval / 10; // convert to milli amps outputvalue = (((long)avgsav * 5000 / 1024) - 500 ) * 1000 / 133; /* sensor outputs about 100 at rest. analog read produces a value of 0-1023, equating to 0v to 5v. "((long)sensorvalue * 5000 / 1024)" is the voltage on the sensor's output in millivolts. there's a 500mv offset to subtract. the unit produces 133mv per amp of current, so divide by 0.133 to convert mv to ma */ avgbval = samplebval / 10; //divide by 10 (number of samples) to get a steady reading pinvoltage = avgbval * 0.00610; // calculate the voltage on the a/d pin /* a reading of 1 for the a/d = 0.0048mv if we multiply the a/d reading by 0.00488 then we get the voltage on the pin. note! .00488 is ideal. i had to adjust to .00610 to match fluke meter. also, depending on wiring and where voltage is being read, under heavy loads vo

URL analysis for hacktronics.com


https://www.hacktronics.com/perform-detailed-search.html
https://www.hacktronics.com/lcds/20-x-4-lcd-white-on-blue/flypage.tpl.html
https://www.hacktronics.com/lost-password.html
https://www.hacktronics.com/prototyping/view-all-products.html
https://www.hacktronics.com/android-adk/view-all-products.html
https://www.hacktronics.com/lost-user-name.html
https://www.hacktronics.com/contact-us/name.html
https://www.hacktronics.com/arduino/seeeduino-mega/flypage.tpl.html
https://www.hacktronics.com/power/view-all-products.html
https://www.hacktronics.com/view-your-cart-content.html
https://www.hacktronics.com/zigbee-/-xbee/view-all-products.html
https://www.hacktronics.com/wireless/view-all-products.html
https://www.hacktronics.com/arduino/arduino-boards/arduino-pro/flypage.tpl.html
https://www.hacktronics.com/blinkm/view-all-products.html
https://www.hacktronics.com/clearance/view-all-products.html

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Domain Name: HACKTRONICS.COM
Registry Domain ID: 1517698644_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2017-09-04T12:50:08Z
Creation Date: 2008-09-03T20:19:06Z
Registry Expiry Date: 2018-09-03T20:19:06Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS57.DOMAINCONTROL.COM
Name Server: NS58.DOMAINCONTROL.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2018-06-24T12:57:38Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.

TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.

The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.

  REGISTRAR GoDaddy.com, LLC

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =hacktronics.com

  PORT 43

  TYPE domain

DOMAIN

  NAME hacktronics.com

  CHANGED 2017-09-04

  CREATED 2008-09-03

STATUS
clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
clientRenewProhibited https://icann.org/epp#clientRenewProhibited
clientTransferProhibited https://icann.org/epp#clientTransferProhibited
clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited

NSERVER

  NS57.DOMAINCONTROL.COM 216.69.185.29

  NS58.DOMAINCONTROL.COM 173.201.76.29

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.uhacktronics.com
  • www.7hacktronics.com
  • www.hhacktronics.com
  • www.khacktronics.com
  • www.jhacktronics.com
  • www.ihacktronics.com
  • www.8hacktronics.com
  • www.yhacktronics.com
  • www.hacktronicsebc.com
  • www.hacktronicsebc.com
  • www.hacktronics3bc.com
  • www.hacktronicswbc.com
  • www.hacktronicssbc.com
  • www.hacktronics#bc.com
  • www.hacktronicsdbc.com
  • www.hacktronicsfbc.com
  • www.hacktronics&bc.com
  • www.hacktronicsrbc.com
  • www.urlw4ebc.com
  • www.hacktronics4bc.com
  • www.hacktronicsc.com
  • www.hacktronicsbc.com
  • www.hacktronicsvc.com
  • www.hacktronicsvbc.com
  • www.hacktronicsvc.com
  • www.hacktronics c.com
  • www.hacktronics bc.com
  • www.hacktronics c.com
  • www.hacktronicsgc.com
  • www.hacktronicsgbc.com
  • www.hacktronicsgc.com
  • www.hacktronicsjc.com
  • www.hacktronicsjbc.com
  • www.hacktronicsjc.com
  • www.hacktronicsnc.com
  • www.hacktronicsnbc.com
  • www.hacktronicsnc.com
  • www.hacktronicshc.com
  • www.hacktronicshbc.com
  • www.hacktronicshc.com
  • www.hacktronics.com
  • www.hacktronicsc.com
  • www.hacktronicsx.com
  • www.hacktronicsxc.com
  • www.hacktronicsx.com
  • www.hacktronicsf.com
  • www.hacktronicsfc.com
  • www.hacktronicsf.com
  • www.hacktronicsv.com
  • www.hacktronicsvc.com
  • www.hacktronicsv.com
  • www.hacktronicsd.com
  • www.hacktronicsdc.com
  • www.hacktronicsd.com
  • www.hacktronicscb.com
  • www.hacktronicscom
  • www.hacktronics..com
  • www.hacktronics/com
  • www.hacktronics/.com
  • www.hacktronics./com
  • www.hacktronicsncom
  • www.hacktronicsn.com
  • www.hacktronics.ncom
  • www.hacktronics;com
  • www.hacktronics;.com
  • www.hacktronics.;com
  • www.hacktronicslcom
  • www.hacktronicsl.com
  • www.hacktronics.lcom
  • www.hacktronics com
  • www.hacktronics .com
  • www.hacktronics. com
  • www.hacktronics,com
  • www.hacktronics,.com
  • www.hacktronics.,com
  • www.hacktronicsmcom
  • www.hacktronicsm.com
  • www.hacktronics.mcom
  • www.hacktronics.ccom
  • www.hacktronics.om
  • www.hacktronics.ccom
  • www.hacktronics.xom
  • www.hacktronics.xcom
  • www.hacktronics.cxom
  • www.hacktronics.fom
  • www.hacktronics.fcom
  • www.hacktronics.cfom
  • www.hacktronics.vom
  • www.hacktronics.vcom
  • www.hacktronics.cvom
  • www.hacktronics.dom
  • www.hacktronics.dcom
  • www.hacktronics.cdom
  • www.hacktronicsc.om
  • www.hacktronics.cm
  • www.hacktronics.coom
  • www.hacktronics.cpm
  • www.hacktronics.cpom
  • www.hacktronics.copm
  • www.hacktronics.cim
  • www.hacktronics.ciom
  • www.hacktronics.coim
  • www.hacktronics.ckm
  • www.hacktronics.ckom
  • www.hacktronics.cokm
  • www.hacktronics.clm
  • www.hacktronics.clom
  • www.hacktronics.colm
  • www.hacktronics.c0m
  • www.hacktronics.c0om
  • www.hacktronics.co0m
  • www.hacktronics.c:m
  • www.hacktronics.c:om
  • www.hacktronics.co:m
  • www.hacktronics.c9m
  • www.hacktronics.c9om
  • www.hacktronics.co9m
  • www.hacktronics.ocm
  • www.hacktronics.co
  • hacktronics.comm
  • www.hacktronics.con
  • www.hacktronics.conm
  • hacktronics.comn
  • www.hacktronics.col
  • www.hacktronics.colm
  • hacktronics.coml
  • www.hacktronics.co
  • www.hacktronics.co m
  • hacktronics.com
  • www.hacktronics.cok
  • www.hacktronics.cokm
  • hacktronics.comk
  • www.hacktronics.co,
  • www.hacktronics.co,m
  • hacktronics.com,
  • www.hacktronics.coj
  • www.hacktronics.cojm
  • hacktronics.comj
  • www.hacktronics.cmo
Show All Mistakes Hide All Mistakes