jekw.co.uk Report : Visit Site


  • Server:Apache...
    X-Powered-By:PHP/5.6.36

    The main IP address: 217.160.0.36,Your server Germany,Karlsruhe ISP:1&1 Internet AG  TLD:uk CountryCode:DE

    The description :a list of stuff others might find useful 28/12/2015 the wireless cheerlights lamp filed under: esp8266 , mqtt — tags: cheerlights , esp8266 , mqtt — jim @ 02:12 pm updated: added two photos of it work...

    This report updates in 07-Jul-2018

Technical data of the jekw.co.uk


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host jekw.co.uk. Currently, hosted in Germany and its service provider is 1&1 Internet AG .

Latitude: 49.004718780518
Longitude: 8.3858299255371
Country: Germany (DE)
City: Karlsruhe
Region: Baden-Wurttemberg
ISP: 1&1 Internet AG

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.

X-Powered-By:PHP/5.6.36
Transfer-Encoding:chunked
Content-Encoding:gzip
Keep-Alive:timeout=15
Server:Apache
Connection:keep-alive
Link:; rel="https://api.w.org/"
Date:Sat, 07 Jul 2018 15:15:28 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns1087.ui-dns.biz. hostmaster.schlund.de. 2017062507 28800 7200 604800 600
ns:ns1087.ui-dns.de.
ns1087.ui-dns.com.
ns1087.ui-dns.org.
ns1087.ui-dns.biz.
ipv4:IP:217.160.0.36
ASN:8560
OWNER:ONEANDONE-AS Brauerstrasse 48, DE
Country:DE
mx:MX preference = 10, mail exchanger = mx00.schlund.de.
MX preference = 10, mail exchanger = mx01.schlund.de.

HtmlToText

a list of stuff others might find useful 28/12/2015 the wireless cheerlights lamp filed under: esp8266 , mqtt — tags: cheerlights , esp8266 , mqtt — jim @ 02:12 pm updated: added two photos of it working i suppose this is really an andy stanford-clark inspired project that i’ve been working on and off for the last year. i liked the idea of cheerlights using the mqtt gateway hosted on the iot.eclipse.org broker at mqtt://iot.eclipse.org/cheerlights. i also liked the effect of ping pong ball over rgb led. so here it is, my wireless cheerlights lamp. it only needs a 9v power supply to power the esp8266-12 wireless and the 2 ws2803 chips each stalk is a length of 6 core phone cable with 2 cores removed and replaced with a piece of stiff wire. in this case it was wire from a chain link fence with the green plastic coating removed. the rgb led was soldered to the remaining four wires and covered in hot melt glue to avoid the wires shorting out. the ping pong ball with a suitable hole was placed on top and the white sugru moulded around to stick the ball on and hide the hot glue and cable end. i’d been mocking this all up on a bread board all along, constantly checking that all of the leds were still working. finally i committed to soldering everything to a board. i carefully planned the layout on paper first as i needed to separate the 3.3v side for the esp8266 and the 5v side for the led driver chips. i had been considering powering it from a 5v usb supply and using a 3.3v voltage regulator for the esp8266 but i couldn’t get it to work reliably. in the end i just soldered the breadboard power supply to the board. this also meant i had an on/off switch, a little power light and fairly sturdy barrel connector for the power. don’t look too carefully, the board is slightly different to the drawing, i switched a couple of ground and 3.3v wires around to make it less cluttered. the two resistors, one for each chip, are all that are required to limit the current to each led. each led is controlled by pwm (pulse width modulation) to allow the brightness to be controlled and have a hope of displaying the correct cheerlight colours. to program the esp8266 chip in situ i exposed a six pin header to connect a usb to serial programmer. this allows lua commands and programs to run and be saved to the chip. more about this later. the other 3 pin jumper allows gpio0 to be held high (3.3v) for ‘run’ or to be held low (0v) to ‘re-flash’ the esp8266 should it be necessary to reload the lua firmware or switch to something else. now on to the programming. this is how i get the lamp to connect to my wireless, connect to an mqtt broker, subscribe to the cheerlights topic and finally set the rgb colours. i use esplorer (currently v0.2.0-rc2) on windows to do the lua programming. the first thing to do is get the esp talking to your wi-fi network, this can be done with the following two commands. wifi.setmode(wifi.station) wifi.sta.config("yourssid","yourwifipassword") to check this work, the following command should print out the ip address you were given, the netmask and your router ip address. print(wifi.sta.getip()) the esp8266 seems to remember this connection and will attempt to connect to this wi-fi every time it is switched on. the next piece of code is a tip that will save your bacon several times at least. the esp8266 with lua firmware will at power on run a file called “init.lua” if it exists. this is very useful to run the cheerlights program when the lamp is turned on. but, if you have even a simple error in the program you risk it going into a restart loop requiring a re-flash of the esp8266. the safest thing to do is make your init.lua a single line similar to the following one. tmr.alarm(0,5000,0,function() dofile('program.lua') end) this sets up a timer, 0 in this case, that performs the dofile(‘program.lua’) after the timer expires in 5 seconds. this gives you plenty of time to execute a tmr.stop(0) command to prevent it running your buggy program. now the main program which isn’t very big at all. (the version of nodemcu i run in my esp8266 was ‘built’ using the nodemcu-build custom build engine where i was able to select the modules i specifically needed to use, mqtt and ws2801, you may now find that they are both included in the normal download) -- initialise led interface ws2801.init(4, 5) although i use 2 ws2803 chips they are sufficiently similar to a ws2801 that the module works ok. it needs to be initialised before use and you tell it the two pins it is to talk to, gpio4 and gpio5. -- set one led on to show starting ws2801.write(string.char(100, 0, 0)) to provide some feedback during the start up process i turn on leds, in this case the first blue one at brightness 100 out of 255. m=mqtt.client("uniqueclientid", 120, "", "", 1) m:on("connect", function(conn) print("connect") end) m:on("offline", function(conn) print("offline") end) m:on("message", function(conn, topic, data) if data ~= nil then print(data) if data == "black" then ws2801.write(string.char( 0, 0, 0):rep(3)) elseif data == "blue" then ws2801.write(string.char(128, 0, 0):rep(3)) elseif data == "green" then ws2801.write(string.char( 0, 100, 0):rep(3)) elseif data == "red" then ws2801.write(string.char( 0, 0, 128):rep(3)) elseif data == "cyan" then ws2801.write(string.char(100, 100, 0):rep(3)) elseif data == "white" then ws2801.write(string.char(120, 120, 120):rep(3)) elseif data == "oldlace" then ws2801.write(string.char( 80, 80, 130):rep(3)) elseif data == "purple" then ws2801.write(string.char( 60, 0, 60):rep(3)) elseif data == "magenta" then ws2801.write(string.char(120, 0, 120):rep(3)) elseif data == "yellow" then ws2801.write(string.char( 0, 100, 160):rep(3)) elseif data == "orange" then ws2801.write(string.char( 0, 40, 200):rep(3)) elseif data == "pink" then ws2801.write(string.char( 40, 30, 180):rep(3)) else ws2801.write(string.char( 0, 100, 0):rep(3)) end end end) the code above creates an mqtt client with an id, keep-alive value of 120 seconds and specifies a clean session each time. three ‘on’ callback functions are defined for connect, offline and message. the on message is the one that does all of the work, it is called when a message is published to our subscribed topic. it uses a big if elseif ladder to set the first three leds (:rep(3) repeats 3 times) to the colour that has been received. the way the ws2803 works means these three values ‘push’ previous values around the loop so the last 4 received colours are always shown. (there seem to be a fair few ‘black’ messages sent though which just turns the 3 leds off) m:connect("iot.eclipse.org", 1883, 0, 0, function(conn) print("connected") ws2801.write(string.char(0, 100, 0)) m:subscribe("cheerlights",0, function(conn) print("subscribed") ws2801.write(string.char(0, 100, 0)) end) end) ws2801.write(string.char(0, 0, 0):rep(12)) this is the bit that connects to the iot.eclipse.org server at port 1883 and when connected, prints “connected” to the serial output, lights the next led green and then subscribes to the cheerlights topic (and turns another led green). the last line which sends 0,0,0 12 times turns all the leds off but this tends to happen before the connect and subscribe green leds turn on. future enhancements will probably be a dedicated raspberry pi running node-red and the mosquito mqtt broker for the lamp to subscribe to. then it will be able to do more than just the cheerlights, maybe a ‘clock’ display using different colour led for each hand. a mood lighting mode selecting colours from a colour wheel on an app? i can choose to put the logic either in the lamp in lua or have the lamp be dumb and display the colours it is told by the node-red flow comments (0) 12/01/2014 node-red flow for the robot arm filed under: iot , node-red , robot — jim @ 04:31 pm i haven’t really documented the node-red flow used for the robot arm anywhere, so this post will try to rectify that. node-red is run on a raspberry pi and used as the

URL analysis for jekw.co.uk


http://arduino.jekw.co.uk/robotarmcontrol.ino
http://jekw.co.uk/2011/09/10/let-us-see-if-i-can-write-a-useful-informative-blog/#comments
http://jekw.co.uk/2011/09/18/recording-light-levels-to-a-currentcost-display/
http://jekw.co.uk/comments/feed/
http://jekw.co.uk/category/currentcost/
http://jekw.co.uk/wp-content/uploads/2015/12/3views.png
http://gcco.jekw.co.uk/mostly_armless_robot.json
http://jekw.co.uk/category/robot/
http://jekw.co.uk/2014/01/05/the-thing/#comments
http://jekw.co.uk/wp-content/uploads/2014/01/process.png
http://jekw.co.uk/wp-content/uploads/2014/01/node-red-flow.png
http://jekw.co.uk/2015/12/28/the-wireless-cheerlights-lamp/
http://jekw.co.uk/tag/esp8266/
http://jekw.co.uk/feed/
http://jekw.co.uk/category/esp8266/
coolcomponents.co.uk
ebay.co.uk
maplin.co.uk
theregister.co.uk

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;

Error for "jekw.co.uk".

the WHOIS query quota for 2600:3c03:0000:0000:f03c:91ff:feae:779d has been exceeded
and will be replenished in 2230 seconds

WHOIS lookup made at 07:09:37 22-Sep-2017

--
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:

Copyright Nominet UK 1996 - 2017.

You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at http://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.

  REFERRER http://www.nominet.org.uk

  REGISTRAR Nominet UK

SERVERS

  SERVER co.uk.whois-servers.net

  ARGS jekw.co.uk

  PORT 43

  TYPE domain

DISCLAIMER
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:
Copyright Nominet UK 1996 - 2017.
You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at http://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.

  REGISTERED no

DOMAIN

  NAME jekw.co.uk

NSERVER

  NS23.SCHLUND.DE 217.160.80.144

  NS24.SCHLUND.DE 217.160.81.144

Go to top

Mistakes


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

  • www.ujekw.com
  • www.7jekw.com
  • www.hjekw.com
  • www.kjekw.com
  • www.jjekw.com
  • www.ijekw.com
  • www.8jekw.com
  • www.yjekw.com
  • www.jekwebc.com
  • www.jekwebc.com
  • www.jekw3bc.com
  • www.jekwwbc.com
  • www.jekwsbc.com
  • www.jekw#bc.com
  • www.jekwdbc.com
  • www.jekwfbc.com
  • www.jekw&bc.com
  • www.jekwrbc.com
  • www.urlw4ebc.com
  • www.jekw4bc.com
  • www.jekwc.com
  • www.jekwbc.com
  • www.jekwvc.com
  • www.jekwvbc.com
  • www.jekwvc.com
  • www.jekw c.com
  • www.jekw bc.com
  • www.jekw c.com
  • www.jekwgc.com
  • www.jekwgbc.com
  • www.jekwgc.com
  • www.jekwjc.com
  • www.jekwjbc.com
  • www.jekwjc.com
  • www.jekwnc.com
  • www.jekwnbc.com
  • www.jekwnc.com
  • www.jekwhc.com
  • www.jekwhbc.com
  • www.jekwhc.com
  • www.jekw.com
  • www.jekwc.com
  • www.jekwx.com
  • www.jekwxc.com
  • www.jekwx.com
  • www.jekwf.com
  • www.jekwfc.com
  • www.jekwf.com
  • www.jekwv.com
  • www.jekwvc.com
  • www.jekwv.com
  • www.jekwd.com
  • www.jekwdc.com
  • www.jekwd.com
  • www.jekwcb.com
  • www.jekwcom
  • www.jekw..com
  • www.jekw/com
  • www.jekw/.com
  • www.jekw./com
  • www.jekwncom
  • www.jekwn.com
  • www.jekw.ncom
  • www.jekw;com
  • www.jekw;.com
  • www.jekw.;com
  • www.jekwlcom
  • www.jekwl.com
  • www.jekw.lcom
  • www.jekw com
  • www.jekw .com
  • www.jekw. com
  • www.jekw,com
  • www.jekw,.com
  • www.jekw.,com
  • www.jekwmcom
  • www.jekwm.com
  • www.jekw.mcom
  • www.jekw.ccom
  • www.jekw.om
  • www.jekw.ccom
  • www.jekw.xom
  • www.jekw.xcom
  • www.jekw.cxom
  • www.jekw.fom
  • www.jekw.fcom
  • www.jekw.cfom
  • www.jekw.vom
  • www.jekw.vcom
  • www.jekw.cvom
  • www.jekw.dom
  • www.jekw.dcom
  • www.jekw.cdom
  • www.jekwc.om
  • www.jekw.cm
  • www.jekw.coom
  • www.jekw.cpm
  • www.jekw.cpom
  • www.jekw.copm
  • www.jekw.cim
  • www.jekw.ciom
  • www.jekw.coim
  • www.jekw.ckm
  • www.jekw.ckom
  • www.jekw.cokm
  • www.jekw.clm
  • www.jekw.clom
  • www.jekw.colm
  • www.jekw.c0m
  • www.jekw.c0om
  • www.jekw.co0m
  • www.jekw.c:m
  • www.jekw.c:om
  • www.jekw.co:m
  • www.jekw.c9m
  • www.jekw.c9om
  • www.jekw.co9m
  • www.jekw.ocm
  • www.jekw.co
  • jekw.co.ukm
  • www.jekw.con
  • www.jekw.conm
  • jekw.co.ukn
  • www.jekw.col
  • www.jekw.colm
  • jekw.co.ukl
  • www.jekw.co
  • www.jekw.co m
  • jekw.co.uk
  • www.jekw.cok
  • www.jekw.cokm
  • jekw.co.ukk
  • www.jekw.co,
  • www.jekw.co,m
  • jekw.co.uk,
  • www.jekw.coj
  • www.jekw.cojm
  • jekw.co.ukj
  • www.jekw.cmo
Show All Mistakes Hide All Mistakes