Search results

  1. B

    Send real time to picaxe with ESP8266

    If you are behind a wireless router, you can use a $3 ESP8266-01 for your RTC. Flash the ESP with the Lua nodeMCU firmware and upload these two scripts to the ESP: -- File name: init.lua print("set up wifi mode") wifi.setmode(wifi.STATIONAP) wifi.sta.config("ret13x","XXXXXXXXX") --here SSID...
  2. B

    calculating a average

    Nice algorithm for computing running mean and variance, http://www.johndcook.com/standard_deviation.html
  3. B

    Circuit Advice Sought

    I am using this DPDT USB switch, http://www.fairchildsemi.com/ds/FS/FSUSB42.pdf The application is for charging a Dell Venue 8 Pro tablet. This tablet charges from a 2.1A source according to the "dumb" USB charging spec.; e.g. D+ D- shorted. In normal usage, the tablet locks out any I/O on the...
  4. B

    OT: Brainlink Bluetooth/IR controller

    I just received an email from SurplusShed offering the Brainlink Bluetooth/IR controller for $20 + $6 shipping US (one week only), http://www.surplusshed.com/pages/item/r3537.html http://www.brainlinksystem.com/brainlink-hardware-description It looks to be a fun device and I bought one. It...
  5. B

    Wiznet WIZ110SR

    @Hemi345 The wires are about 13" long and they have heat shrink on each end that extends to the very tip of the female socket. I think they are custom made. I ordered some of these 2mm crimp sockets so it should be possible to duplicate them...
  6. B

    SRAM Battery Backup

    The question is; do you think this scheme would work with a 20X2, http://www.edn.com/design/integrated-circuit-design/4335429/Microcontroller-provides-SRAM-battery-backup And more specifically, powering a 23K256 SRAM from an output pin and retaining the data by switching to power from a CR2032...
  7. B

    Issue with 20X2 Hardware SPI

    I am working with the MAX3100, http://datasheets.maximintegrated.com/en/ds/MAX3100.pdf I selected the MAX 3100 because I thought this chip would give an easy way to get some experience with hardware SPI on the 20X2 (e.g. SPI in, serial out and reading/writing to registers). From the datasheet...
  8. B

    Anyone Used a MAX3100 SPI to UART?

    I just did a Google search on the Forum and it turned up exactly 3 hits, max3100 site:www.picaxeforum.co.uk I am going to use this chip with a 20X2 to learn a bit about SPI and thought that there might be some code floating about. Baxter
  9. B

    Part Selection for Circuit

    Could anyone suggest a part/s to build the interface described in this Application Note (Figure 1), http://pdfserv.maximintegrated.com/en/an/AN85.pdf And also, what is a suitable resistor value? Baxter
  10. B

    20X2 as a SPI Slave?

    Reading through the manual I cannot find any reference to configuration of the 20X2 as a SPI slave. Is it possible to do this; and if not, is a Max3100 or a NXP SC16IS740 suitable as a viable alternative to act as a fake slave and talk to the Picaxe via Tx, Rx. Baxter
  11. B

    Will a Pause Prevent a Program Download?

    I am testing a small board that incorporates an 08m2 together with an inverter circuit to interface to a straight USB to serial adapter. Everything works ok, but the 08m2 does not want to accept a new download without a hard reset. The program is: 'Picaxe 08m2 Mini Board test #picaxe 08M2...
  12. B

    Mini Board for 08m/08m2

    I decided to refresh my toner transfer skills with a mixture of through hole and smd parts. For lack of anything better, the circuit is a basic non-inverted USB serial interface to a Picaxe 08/08m2; nothing new here. The pins are brought out to Arduino style stackable headers. These headers...
  13. B

    Seeking Ideas on How to Keep Squirrel Off Roof

    Ok, here is the problem. A squirrel (or squirrels) is using my roof as a path to go from a tree in the front of the house to another tree in the rear. Because of the nature of squirrel claws, this is very destructive to the shingles. Cutting down the trees is not an option. There is a low tech...
  14. B

    AUD$0.80 USB Powersupply Kit

    I came across this at Dontronics, http://www.dontronics-shop.com/4d-usb-5v-kit-of-parts.html Shipping kills the deal for me (AUD$12.00), but for Australians it might be better. Baxter
  15. B

    Voltage Regulator Question

    I have a MAX883 5v regulator on a breadboard hooked up according to the attached application circuit from the data sheet. I am using a 3uf capacitor on the output because that is all I happened to have at hand. The input is from the Wii battery (6v) discussed here...
  16. B

    Free STM32F0 DISCOVERY Kit

    The MCU is not a PIC so probably not in keeping with the spirit of the Forum, but it's free, http://www.st.com/internet/evalboard/product/253215.jsp You just need to register and they will send it to you. I am not certain if it is only for US residents. Baxter
  17. B

    Power Switch Software Control

    I am trying to construct a latching power switch with the following specifications: 1. 3.3V/5v, 200ma operation 2. push button on-off 3. power on-off from a microcontroller The Pololu Lv switch satisfies requirements 1 and the off requirement of 3, http://www.pololu.com/catalog/product/751...
  18. B

    20x2 setfreq Best Practices?

    Can anyone suggest some guidelines on the use of setfreq m64 for the 20X2? Baxter
  19. B

    Pin input and Picaxe V+ Voltage Level Question

    I have read this excellent summary, http://www.picaxeforum.co.uk/showthread.php?8609-PICAXE-Input-Pin-Types From it, I conclude that if you power the any of the Picaxes with 5V then you can use either 3.3V or 5V peripherals without problems. My question is relative to a 3.3V powered Picaxe...
  20. B

    20X2 Wake from Sleep 0 Problems

    I am testing the following program: pause 1000 'set INT1 (C.1) to trigger Interrupt on rising edge hintsetup %00100010 ;enable interrupt flags INT1 (C.1) setintflags %00000010,%00000010 setint %00000010,%00000010 main: for b1 = 0 to 7 sertxd("The value of b1 is ",#b1,13,10)...
Top