Close

123630 Results for "S%20%ED%86%A0%ED%86%A0%EC%B6%94%EC%B2%9C%EC%97%85%EC%B2%B4%20CDDC7.COM%20%E2%99%AA%EB%B3%B4%EB%84%88%EC%8A%A4%EC%BD%94%EB%93%9C%20B77%E2%99%AA%ED%86%A0%ED%86%A0%ED%94%BC%EC%A7%80%EC%BB%AC%E0%BE%AA%ED%94%BC%EB%A7%9D%ED%8F%AC%EC%BB%A4%EC%BF%A0%ED%8F%B0%E2%98%B8%EC%B9%B4%EC%A7%80%EB%85%B8%EC%A7%81%EC%97%85%E2%8B%94%EC%8B%A4%EC%8B%9C%EA%B0%84tv%EC%A4%91%EA%B3%84%DA%A2%ED%86%A0%ED%86%A0%EC%B6%94%EC%B2%9C%EC%97%85%EC%B2%B4%EC%82%AC%EB%9E%91%20dissimilarity/"

  • I2S DMA transfer / interrupt

  • Setting up the I2S DMA transfer with interrupt was not that straightforward, the datasheet is a little bit "tight-lipped" :-) ...and the official ASF example isn't commented good enough... So my findings: I started with the I2S example from the ASF 3.35.1 ...
  • Still Testing

  • Still TestingThose rotary encoders are still causing trouble, occasionally they get confused. I can't work out why but t must be a memory clash or an interrupt problem. I am using volatile variable without turning off interrupts so I should look at that...
  • Testing...

  • I have about 8 of these displays, and one is wired up to my Arduino to work out the final working code. I have done a bunch of research with the datasheets and pinouts to get to this point. My code has been shamelessly stolen from this Swedish tinkerer's...
  • Airfoil Design with OpenSCAD

  • hull(){ for(z = [0:10:1000]){ translate([0,0,z]){ rotate([0,0,45*z/1000]){ linear_extrude(0.1){ scale([thicknessArray[z],thicknessArray[z]]){ projection(cut = true){ translate([0,0,-z]){ hull(){ //base(); translate([0,0,0]){ nrel_s835(); }; translate([0,0,300]){...
  • Matrix bitmap generator

  • I wrote a quick python utility to aid in the generation of bitmaps for the 16x16 matrix driver. The utility can generate / print a code friendly array of bytes (encoded in binary) that can be used as a bitmap. This bitmap can them be combined with other...
  • UT Clock with Menu

  • UT Clock with Menu Added the menu system to the UT Clock. Had to add an abort/cancel option (i.e. 'X') to the "Done" menu option. An obvious omission. Here is the code: // Include RTC libraries and initialise #include #include "RTClib.h" RTC_DS1307 rtc;...
  • Twitch PUBSUB

  • I have a handy bunch of node-red nodes for twitch pubsub api! [{"id":"843461da.45d378","type":"inject","z":"4d7be1f4.b5275","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":true,"onceDelay":"1","topic":"","payload":"{\"type\":\"LISTEN\",\"data\":{\"topics\":[\"community-points-channel-v1.####\",...
  • AVR Halloween Pumpkin V2

  • Arduino-Code:#include #include #include #include Crc16 crc; SoftwareSerial BTSerial(8, 7); uint8_t configs[18] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; uint8_t configsbuf[18] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
  • Coding Battle!

  • Now, we need to do something very important and that is coding our pocket weather station because without the code running in the Arduino which in turn runs everything, our device is just a plastic box with no functionality. So let's program our pocket...
  • API wrapper for hack.chat using ws package

  • API wrapper for hack.chat using ws package - Hack Chat of https://www.npmjs.comUsagevar HackChat = require("hack-chat");var chat = new HackChat(); // Client group for multiple channels chat.join("lobby", "TestUser");var programmingSession = chat.join("programming",...