Temperature coefficient 
NTC - negative resistance coefficient, resistance decreases with temperature
PTC - positive resistance coefficient, resistance increases with temperature

Temperature coefficient: 50ppm/°C
Meaning that the change in value due to a temperature change of 1°C will not be more than 50Ω for every 1MΩ of the resistor's value (or 0.05Ω for every 1KΩ of its value).


Temperature coefficient: 2750K ppm/°C
Meaning that the change in value due to a temperature change of 1°C will not be more than 2750Ω for every 1MΩ of the resistor's value (or 2.75Ω for every 1KΩ of its value).


[ add comment ] ( 5 views )   |  [ 0 trackbacks ]   |  permalink  |  related link
Leftfield & Sleaford Mods - Head And Shoulders 


[ add comment ] ( 5 views )   |  [ 0 trackbacks ]   |  permalink  |  related link
Standard EIA Decade Resistor Values Table 
http://www.logwell.com/tech/components/ ... alues.html

[ add comment ] ( 5 views )   |  [ 0 trackbacks ]   |  permalink  |  related link
PyBBIO is a Python library for hardware IO support on the TI Beaglebone.  
https://github.com/graycatlabs/PyBBIO/wiki

(/usr/local/lib/PyBBIO/examples)



[ add comment ] ( 2 views )   |  [ 0 trackbacks ]   |  permalink
BBB Beaglebone Essentials 
Wisdom for BBB
https://graycat.io/


Device tree overlay and support scripts for using most available hardware I/O on the BeagleBone without editing dts files or rebuilding the kernel
https://github.com/cdsteinkuehler/beaglebone-universal-io

A GUI for the BB universal IO
https://github.com/strahlex/BBIOConfig



https://www.youtube.com/watch?v=By9foc1iJ3Q

https://github.com/cdsteinkuehler/beaglebone-universal-io/blob/master/config-pin

http://beagleboard.org/static/PumpingSt ... s.pptx.pdf

rotary encoders pinout
https://graycat.io/blog/



[ add comment ] ( 2 views )   |  [ 0 trackbacks ]   |  permalink
KiCad won't load footprints [fixed] 
"Errors were encountered loading footprints
IO_ERROR: http GET command failed
Cannot get/download Zip archive:

https://bugs.launchpad.net/kicad/+bug/1520376

fix:

https://raw.githubusercontent.com/KiCad/kicad-library/master/template/fp-lib-table.for-pretty


[ add comment ] ( 3 views )   |  [ 0 trackbacks ]   |  permalink  |  related link
Reflow Kit V3 PRO 
https://www.beta-estore.com/rkuk/order_product_details.html?p=624

[ add comment ] ( 2 views )   |  [ 0 trackbacks ]   |  permalink
Krabičky 
http://sesmil.pl/en-kontakt.html

http://www.ztc.cz/?go=odkazy&id=47

http://www.schroff.biz/frontpanelexpress/index.html

http://cz.rs-online.com/web/p/regalove- ... a/6657661/

http://cz.rs-online.com/web/p/lepici-dr ... -_-0609297


[ add comment ] ( 2 views )   |  [ 0 trackbacks ]   |  permalink
Plechové krabičky přístrojové 
http://www.gme.cz/u-kk09-455-p072-203

[ add comment ] ( 2 views )   |  [ 0 trackbacks ]   |  permalink
BBB and serial communication 
https://learn.adafruit.com/setting-up-io-python-library-on-beaglebone-black/uart


http://bradsmc.blogspot.cz/2013/05/exam ... tween.html

import serial
import time
import datetime
import re

serial = serial.Serial("/dev/ttyO1", baudrate=38400)

resp = ""

while True:
while (serial.inWaiting() > 0):
data = serial.read()
resp += data
if "\r\n" in resp:
now = datetime.datetime.now()
timestamp = "%02d/%02d/%d %02d:%02d:%02d" % \
(now.month,now.day,now.year,now.hour,now.minute,now.second)
matchObj = re.match(r'\^([0-9A-F]+)\r\n', resp)
print matchObj.group(1)
resp = ""
serial.flush();
serial.write(matchObj.group(1) + " OK: " + timestamp + "\n")


Return the number of chars in the receive buffer.
http://pyserial.sourceforge.net/pyseria ... .inWaiting



[ add comment ] ( 2 views )   |  [ 0 trackbacks ]   |  permalink

<Back | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Next> Last>>