Skip to content

Instantly share code, notes, and snippets.

View jensh's full-sized avatar

Jens Hauke jensh

View GitHub Profile
@goebish
goebish / CX10_nRF24.ino
Last active January 20, 2019 20:20
nRF24 CX-10 Tx Code (green & blue boards)
/*************************************************************
************* nRF24 Cheerson CX-10 Tx Code ******************
************* (Green & Blue boards) ******************
**************************************************************
by goebish on RCgroups.com
Thanks to:
PhracturedBlue, victzh, hexfet, closedsink, midelic, Hasi ...
@gdamjan
gdamjan / init.lua
Last active August 29, 2015 14:13
irc in lua for the esp8266 with nodemcu -- https://github.com/nodemcu/nodemcu-firmware
function connect_callback(conn)
conn:send("NICK esp8266_hacklab\r\n")
conn:send("USER esp8266_hacklab 8 * :Heeelloooo\r\n")
conn:send("JOIN #lugola\r\n")
conn:send("PRIVMSG #lugola :здраво свет\r\n")
end
function receive_callback(conn, payload)
print(payload)
if string.find(payload, "PING :") == 1 then