Advertisement
my__funeral

stupid shit (принимающая)

Sep 16th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. char s;
  2. void setup() {
  3. // put your setup code here, to run once:
  4. Serial.begin(9600);
  5. Serial.write(0xA1);
  6. Serial.write(0xF1);
  7. //Serial.write(0x02);
  8. }
  9.  
  10. void loop() {
  11. // put your main code here, to run repeatedly:
  12. if (Serial.available()>0){
  13. s=Serial.read();
  14. Serial.println(s,HEX);
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement