This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:100000000C946D010C9495010C9495010C94950140 | |
:100010000C9495010C9495010C9495010C94950108 | |
:100020000C9495010C9495010C94DD020C94B7038B | |
:100030000C9495010C9495010C9495010C949501E8 | |
:100040000C9495010C9495010C9495010C949501D8 | |
:100050000C9495010C9495010C9495010C941C0A38 | |
:100060000C9495010C9495010C9495010C949501B8 | |
:100070000C9495010C9495010C9495010C949501A8 | |
:100080000C9495010C9495010C9495010C94950198 | |
:100090000C9495010C9495010C9495010C94950188 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bits=8 | |
RAW Binary=11100001 | |
Bits=8 | |
RAW Binary=11100001 | |
Bits=8 | |
RAW Binary=11100001 | |
Bits=8 | |
RAW Binary=11100001 | |
Bits=8 | |
RAW Binary=11100001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Info: Thank you for choosing to chat with us. An agent will be with you shortly. | |
Info: All agents are currently assisting others. Thank you for your patience. | |
Info: All agents are currently assisting others. Thank you for your patience. | |
Info: All agents are currently assisting others. Thank you for your patience. | |
Info: All agents are currently assisting others. Thank you for your patience. | |
Info: You are now chatting with Lana_ext_2274. | |
Lana_ext_2274: Welcome to Digi-Key Live-Help. How may I assist you? | |
JP Liew: Hi | |
JP Liew: I was trying to pay an order using PayPal | |
JP Liew: Web ID: xxxxxxxxx Access ID: xxxxx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Converts a PNG image to a .GRF file for use with Zebra printers | |
* | |
* The input is preferably a 1-bit black/white image but RGB images | |
* are accepted as well. | |
* | |
* This function uses PHP's GD library image functions. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int pinR = 10; | |
int pinG = 9; | |
int pinB = 11; | |
void setup() { | |
pinMode(pinR, OUTPUT); | |
pinMode(pinG, OUTPUT); | |
pinMode(pinB, OUTPUT); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int pinR = 10; | |
int pinG = 9; | |
int pinB = 11; | |
int valueX; | |
void setup() { | |
pinMode(pinR, OUTPUT); | |
pinMode(pinG, OUTPUT); | |
pinMode(pinB, OUTPUT); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int pinR = 10; | |
int pinG = 9; | |
int pinB = 11; | |
void setup() { | |
pinMode(pinR, OUTPUT); | |
pinMode(pinG, OUTPUT); | |
pinMode(pinB, OUTPUT); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int pinR = 10; | |
int pinG = 9; | |
int pinB = 11; | |
int btnPin = 2; | |
int isPressed =0; | |
void setup() { | |
pinMode(pinR, OUTPUT); | |
pinMode(pinG, OUTPUT); | |
pinMode(pinB, OUTPUT); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int sensorPin = 2; | |
int isTilted = 0; | |
void setup() { | |
Serial.begin(9600); | |
pinMode(sensorPin, INPUT); | |
} | |
void loop() { | |
isTilted=digitalRead(sensorPin); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int sensorPin = 2; | |
int LEDPin = 13; | |
int isTilted = 0; | |
void setup() { | |
Serial.begin(9600); | |
pinMode(sensorPin, INPUT); | |
pinMode(LEDPin, OUTPUT); | |
} |
OlderNewer