osd-contiki/examples/osd/arduino-sketch
Ralf Schlatterbeck abdf6f8c6b Refactor A/D conversion in adc.c
Now the necessary settings are in adc.h. Refactored to allow repeated
ADC reads without reinitialization. Arduino allows setting
analogReference, this is now also implemented.
ADC is now initialized to sane values in apps/arduino/arduino-process.c
dev/arduino/arduino-compat.h now has all hardware independent settings
for arduino (some moved from platform/osd-merkur/dev/hw-arduino.h).
turnOffPWM re-implemented with hw_timer, removed from wiring_digital.c
ADC-specific arduino stuff moved to arduino-compat.h
Arduinos wiring_analog no longer necessary.
arduino-sketch example now reads analog inputs 1 and 5 using analogRead.
2014-11-19 13:53:32 +01:00
..
arduino-example.c Add Arduino compatibility layer 2014-11-19 13:48:05 +01:00
flash.sh Add Arduino compatibility layer 2014-11-19 13:48:05 +01:00
led_pwm.h Refactor A/D conversion in adc.c 2014-11-19 13:53:32 +01:00
Makefile Factor resources, fix time 2014-11-19 13:53:12 +01:00
project-conf.h Add Arduino compatibility layer 2014-11-19 13:48:05 +01:00
README.md Add Arduino compatibility layer 2014-11-19 13:48:05 +01:00
resource_led_pwm.c Refactor A/D conversion in adc.c 2014-11-19 13:53:32 +01:00
run.sh Add Arduino compatibility layer 2014-11-19 13:48:05 +01:00
sketch.pde Refactor A/D conversion in adc.c 2014-11-19 13:53:32 +01:00

Arduino compatibility example

This example shows that it is now possible to re-use arduino sketches in Contiki. This example documents the necessary magic. Arduino specifies two routines, setup and loop. Before setup is called, the framework initializes hardware. In original Arduino, all this is done in a main function (in C). For contiki we define a process that does the same.

See the documentation file in apps/contiki-compat/README.md